We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a87006d commit 7f47adbCopy full SHA for 7f47adb
tests/test_client.py
@@ -106,6 +106,14 @@ def test_search_encoding(self):
106
headers=PICNIC_HEADERS,
107
)
108
109
+ def test_get_article_by_gtin(self):
110
+ self.client.get_article_by_gtin("123456789")
111
+ self.session_mock().get.assert_called_with(
112
+ "https://picnic.app/nl/qr/gtin/123456789",
113
+ headers=PICNIC_HEADERS,
114
+ allow_redirects=False,
115
+ )
116
+
117
def test_get_cart(self):
118
self.client.get_cart()
119
self.session_mock().get.assert_called_with(
0 commit comments