From 24e12b1422a56b3bea861692ba22e3fb8e0634a7 Mon Sep 17 00:00:00 2001 From: Brandur Date: Wed, 26 Apr 2017 12:08:19 -0700 Subject: [PATCH] Add test structure for `InvoiceLineItem` This doesn't come back directly from the API so the suite is empty, but just for completeness add a test file for the newly created `InvoiceLineItem` model. --- test/stripe/invoice_line_item_test.rb | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 test/stripe/invoice_line_item_test.rb diff --git a/test/stripe/invoice_line_item_test.rb b/test/stripe/invoice_line_item_test.rb new file mode 100644 index 00000000..806dd504 --- /dev/null +++ b/test/stripe/invoice_line_item_test.rb @@ -0,0 +1,7 @@ +require File.expand_path('../../test_helper', __FILE__) + +module Stripe + class InvoiceLineItemTest < Test::Unit::TestCase + FIXTURE = API_FIXTURES.fetch(:invoice_line_item) + end +end