summaryrefslogtreecommitdiff
path: root/billing/test/integration/subscription_test.rb
diff options
context:
space:
mode:
Diffstat (limited to 'billing/test/integration/subscription_test.rb')
-rw-r--r--billing/test/integration/subscription_test.rb7
1 files changed, 5 insertions, 2 deletions
diff --git a/billing/test/integration/subscription_test.rb b/billing/test/integration/subscription_test.rb
index 7410118..c53131e 100644
--- a/billing/test/integration/subscription_test.rb
+++ b/billing/test/integration/subscription_test.rb
@@ -13,8 +13,6 @@ class SubscriptionTest < ActionDispatch::IntegrationTest
@braintree_customer = FactoryGirl.create(:braintree_customer)
@customer.braintree_customer_id = @braintree_customer.id
@customer.save
- @subscription = FakeBraintree::Subscription.new({:payment_method_token => @braintree_customer.credit_cards.first, :plan_id => '5'}, {:id => @braintree_customer.id, :merchant_id => Braintree::Configuration.merchant_id})
- # unfortunately @braintree_customer.credit_cards.first.subscriptions still returns empty array
end
teardown do
@@ -23,6 +21,11 @@ class SubscriptionTest < ActionDispatch::IntegrationTest
@customer.destroy
end
+ test "can create subscription" do
+ @subscription = FakeBraintree::Subscription.new({:payment_method_token => @braintree_customer.credit_cards.first, :plan_id => '5'}, {:id => @braintree_customer.id, :merchant_id => Braintree::Configuration.merchant_id})
+ assert @braintree_customer.credit_cards.first.subscriptions.present?
+ end
+
test "admin can cancel subscription for another" do
skip "not sure about testing admin cancelling subscription with fake_braintree"
login_as @admin