Added additional integration tests for measure and add

This commit is contained in:
Matt Gerega
2024-03-28 09:29:39 -04:00
parent 19c414da4b
commit a6ae808389
4 changed files with 204 additions and 5 deletions

View File

@@ -58,7 +58,10 @@ def random_vendor_impl():
# Add vendor
result = httpx.post(
f"{URL}/api/v1/vendor",
json={"name": "John"},
json={
"name": "John",
"empty_spool_weight": 246,
},
)
result.raise_for_status()