-
Notifications
You must be signed in to change notification settings - Fork 439
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add tests and fix existing ones for the latest stripe-mock
- Loading branch information
1 parent
728d05b
commit 1073eeb
Showing
5 changed files
with
51 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
from __future__ import absolute_import, division, print_function | ||
|
||
import stripe | ||
|
||
|
||
TEST_RESOURCE_ID = "promo_123" | ||
|
||
|
||
class TestPromotionCode(object): | ||
def test_is_listable(self, request_mock): | ||
resources = stripe.PromotionCode.list() | ||
request_mock.assert_requested("get", "/v1/promotion_codes") | ||
assert isinstance(resources.data, list) | ||
assert isinstance(resources.data[0], stripe.PromotionCode) | ||
|
||
def test_is_retrievable(self, request_mock): | ||
resource = stripe.PromotionCode.retrieve(TEST_RESOURCE_ID) | ||
request_mock.assert_requested( | ||
"get", "/v1/promotion_codes/%s" % TEST_RESOURCE_ID | ||
) | ||
assert isinstance(resource, stripe.PromotionCode) | ||
|
||
def test_is_creatable(self, request_mock): | ||
resource = stripe.PromotionCode.create(coupon="co_123", code="MYCODE") | ||
request_mock.assert_requested("post", "/v1/promotion_codes") | ||
assert isinstance(resource, stripe.PromotionCode) | ||
|
||
def test_is_saveable(self, request_mock): | ||
resource = stripe.PromotionCode.retrieve(TEST_RESOURCE_ID) | ||
resource.metadata["key"] = "value" | ||
resource.save() | ||
request_mock.assert_requested( | ||
"post", "/v1/promotion_codes/%s" % TEST_RESOURCE_ID | ||
) | ||
|
||
def test_is_modifiable(self, request_mock): | ||
resource = stripe.PromotionCode.modify( | ||
TEST_RESOURCE_ID, metadata={"key": "value"} | ||
) | ||
request_mock.assert_requested( | ||
"post", "/v1/promotion_codes/%s" % TEST_RESOURCE_ID | ||
) | ||
assert isinstance(resource, stripe.PromotionCode) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters