adjusted tests for --clean-deleted-relations command

This commit is contained in:
lujoh
2023-10-17 23:03:37 -04:00
parent 06204dfcd8
commit 9ec26c60ff
4 changed files with 20 additions and 12 deletions

View File

@@ -36,9 +36,15 @@ def test_admin_migrate(cli_call, mock_func_factory):
def test_admin_clean_deleted_relations(cli_call, mock_func_factory):
mock = mock_func_factory(nominatim.tools.admin, 'clean_deleted_relations')
assert cli_call('admin', '--clean-deleted') == 0
assert cli_call('admin', '--clean-deleted', '--age', '1 month') == 0
assert mock.called == 1
def test_admin_clean_deleted_relations_no_age(cli_call, mock_func_factory):
mock = mock_func_factory(nominatim.tools.admin, 'clean_deleted_relations')
with pytest.raises(SystemExit):
cli_call('admin', '--clean-deleted')
class TestCliAdminWithDb:
@pytest.fixture(autouse=True)