You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add has_more attribute to all ListObject instances
This method is called in Stripe when using the `auto_paging_each`
ListObject method. Without this being in the mock data this method
doesn't work.
Steps to reproduce:
$ rails console test
irb> StripeMock.start
irb> Stripe.api_key = 'sk_test_...'
irb> h = StripeMock.create_test_helper
irb> customer = Stripe::Customer.create(source: h.generate_card_token)
irb> customer.subscriptions.auto_paging_each.map(&:id)
0 commit comments