-
Notifications
You must be signed in to change notification settings - Fork 438
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for TaxRate resource and APIs
- Loading branch information
1 parent
e33fc85
commit 2388ccc
Showing
4 changed files
with
58 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
from __future__ import absolute_import, division, print_function | ||
|
||
from stripe.api_resources.abstract import CreateableAPIResource | ||
from stripe.api_resources.abstract import UpdateableAPIResource | ||
from stripe.api_resources.abstract import ListableAPIResource | ||
|
||
|
||
class TaxRate( | ||
CreateableAPIResource, UpdateableAPIResource, ListableAPIResource | ||
): | ||
OBJECT_NAME = "tax_rate" |
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,45 @@ | ||
from __future__ import absolute_import, division, print_function | ||
|
||
import stripe | ||
|
||
|
||
TEST_RESOURCE_ID = "txr_123" | ||
|
||
|
||
class TestTaxRate(object): | ||
def test_is_listable(self, request_mock): | ||
resources = stripe.TaxRate.list() | ||
request_mock.assert_requested("get", "/v1/tax_rates") | ||
assert isinstance(resources.data, list) | ||
assert isinstance(resources.data[0], stripe.TaxRate) | ||
|
||
def test_is_retrievable(self, request_mock): | ||
resource = stripe.TaxRate.retrieve(TEST_RESOURCE_ID) | ||
request_mock.assert_requested( | ||
"get", "/v1/tax_rates/%s" % TEST_RESOURCE_ID | ||
) | ||
assert isinstance(resource, stripe.TaxRate) | ||
|
||
def test_is_creatable(self, request_mock): | ||
resource = stripe.TaxRate.create( | ||
display_name="name", inclusive=False, percentage=10.15 | ||
) | ||
request_mock.assert_requested("post", "/v1/tax_rates") | ||
assert isinstance(resource, stripe.TaxRate) | ||
|
||
def test_is_saveable(self, request_mock): | ||
resource = stripe.TaxRate.retrieve(TEST_RESOURCE_ID) | ||
resource.metadata["key"] = "value" | ||
resource.save() | ||
request_mock.assert_requested( | ||
"post", "/v1/tax_rates/%s" % TEST_RESOURCE_ID | ||
) | ||
|
||
def test_is_modifiable(self, request_mock): | ||
resource = stripe.TaxRate.modify( | ||
TEST_RESOURCE_ID, metadata={"key": "value"} | ||
) | ||
request_mock.assert_requested( | ||
"post", "/v1/tax_rates/%s" % TEST_RESOURCE_ID | ||
) | ||
assert isinstance(resource, stripe.TaxRate) |