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.
This commit is contained in:
Brandur 2017-04-26 12:08:19 -07:00
parent 48c0067efe
commit 24e12b1422

View File

@ -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