def test_api_get(self, func):
        api = Api('', 'fake_consumer_key', 'fake_consumer_secret')

        obj = api.get_product_shipping_classes()
        assert all(type(x) == ProductShipping for x in obj)

        obj = api.get_product_shipping_classes(24)
        assert type(obj) == ProductShipping and obj.id == 24
    def test_object_refresh(self, func):
        api = Api('', 'fake_consumer_key', 'fake_consumer_secret')

        obj = api.get_product_shipping_classes(24)
        assert type(obj) == ProductShipping and obj.id == 24

        obj.refresh()
        assert type(obj) == ProductShipping and obj.id == 24