Skip to content

Commit 2cf6b50

Browse files
committed
Stubs for new tests
1 parent be532b3 commit 2cf6b50

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

tests/mock_vws/test_get_duplicates.py

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -288,3 +288,23 @@ def test_active_flag_original(
288288
)
289289

290290
assert response.json()['similar_targets'] == [similar_target_id]
291+
292+
293+
@pytest.mark.usefixtures('verify_mock_vuforia')
294+
class TestProcessing:
295+
"""
296+
Tests for targets in the processing stage.
297+
"""
298+
299+
def test_original_processing(self) -> None:
300+
"""
301+
Checking for duplicates on a target which is processing, ...
302+
"""
303+
pass
304+
305+
def test_duplicate_processing(self) -> None:
306+
"""
307+
Checking for duplicates on a target which is processed, when another
308+
target which is a duplicate is processing, ...
309+
"""
310+
pass

0 commit comments

Comments
 (0)