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 75c8e82 commit 8dd27a6Copy full SHA for 8dd27a6
tests/test_data_extractor.py
@@ -32,6 +32,12 @@ def test_find_items(self):
32
]
33
assert data_extractor.find_items() == expected
34
35
+ def test_find_items_none_found(self):
36
+ assert data_extractor.find_items(100) == []
37
+
38
+ def test_find_items_all_matching(self):
39
+ assert data_extractor.find_items(1) == WEBSITES
40
41
def test_amend_domain_values(self):
42
expected = [
43
{
0 commit comments