mirror of
https://github.com/stripe/stripe-ruby.git
synced 2025-10-07 00:05:33 -04:00
12 lines
310 B
Ruby
12 lines
310 B
Ruby
require File.expand_path('../../test_helper', __FILE__)
|
|
|
|
module Stripe
|
|
class AlipayAccountTest < Test::Unit::TestCase
|
|
should "raise if accessing Stripe::Alipay.account directly" do
|
|
assert_raises NotImplementedError do
|
|
Stripe::AlipayAccount.retrieve "card_12345"
|
|
end
|
|
end
|
|
end
|
|
end
|