Skip to content

Commit 14e64b6

Browse files
committed
Start of update tests
1 parent fb11e32 commit 14e64b6

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed

tests/test_vws.py

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -429,3 +429,36 @@ def test_get_duplicate_targets(
429429
client.wait_for_target_processed(target_id=similar_target_id)
430430
duplicates = client.get_duplicate_targets(target_id=target_id)
431431
assert duplicates == [similar_target_id]
432+
433+
434+
class TestUpdateTarget:
435+
"""
436+
Tests for updating a target.
437+
"""
438+
439+
def test_update_target(
440+
self,
441+
client: VWS,
442+
high_quality_image: io.BytesIO,
443+
) -> None:
444+
"""
445+
It is possible to update a target.
446+
"""
447+
448+
def test_target_status_not_success(
449+
self,
450+
client: VWS,
451+
high_quality_image: io.BytesIO,
452+
) -> None:
453+
"""
454+
It is possible to update a target.
455+
"""
456+
457+
def test_no_fields_given(
458+
self,
459+
client: VWS,
460+
high_quality_image: io.BytesIO,
461+
) -> None:
462+
"""
463+
It is possible to update a target.
464+
"""

0 commit comments

Comments
 (0)