|
|
- from mock import patch
-
- from hc.payments.models import Subscription
- from hc.test import BaseTestCase
-
-
- class CancelPlanTestCase(BaseTestCase):
-
- def setUp(self):
- super(CancelPlanTestCase, self).setUp()
- self.sub = Subscription(user=self.alice)
- self.sub.subscription_id = "test-id"
- self.sub.plan_id = "P5"
- self.sub.save()
-
- @patch("hc.payments.views.braintree")
- def test_it_works(self, mock_braintree):
-
- self.client.login(username="[email protected]", password="password")
- r = self.client.post("/pricing/cancel_plan/")
- self.assertRedirects(r, "/pricing/")
-
- self.sub.refresh_from_db()
- self.assertEqual(self.sub.subscription_id, "")
- self.assertEqual(self.sub.plan_id, "")
|