stripe-ruby/test/stripe/invoice_line_item_test.rb
Brandur 24e12b1422 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.
2017-04-26 12:08:19 -07:00

8 lines
185 B
Ruby

require File.expand_path('../../test_helper', __FILE__)
module Stripe
class InvoiceLineItemTest < Test::Unit::TestCase
FIXTURE = API_FIXTURES.fetch(:invoice_line_item)
end
end