Beispiel #1
0
def test_tax_category_get_by_id(client):
    tax_category = client.tax_categories.create(
        types.TaxCategoryDraft(name="Hoog", rates=[]))

    assert tax_category.id
    assert tax_category.name == "Hoog"

    tax_category = client.tax_categories.get_by_id(tax_category.id)
    assert tax_category.id
    assert tax_category.name == "Hoog"
Beispiel #2
0
def test_tax_category_update_by_id(client):
    tax_category = client.tax_categories.create(
        types.TaxCategoryDraft(name="Hoog", rates=[]))

    assert tax_category.id
    assert tax_category.name == "Hoog"

    tax_category = client.tax_categories.update_by_id(
        tax_category.id,
        version=tax_category.version,
        actions=[
            types.TaxCategorySetDescriptionAction(description="Some text")
        ],
    )
    assert tax_category.id
    assert tax_category.name == "Hoog"
Beispiel #3
0
 def post_load(self, data, **kwargs):
     return types.TaxCategoryDraft(**data)
def test_tax_category_create(client):
    tax_category = client.tax_categories.create(
        types.TaxCategoryDraft(name="Hoog"))

    assert tax_category.id
    assert tax_category.name == "Hoog"