mirror of
https://github.com/stripe/stripe-ruby.git
synced 2025-10-05 00:02:50 -04:00
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.
8 lines
185 B
Ruby
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
|