Skip to content

Commit

Permalink
removed old tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Martin committed Oct 9, 2024
1 parent 0b9dfb5 commit 9078726
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 86 deletions.
Empty file added tests/__init__.py
Empty file.
12 changes: 8 additions & 4 deletions tests/conftest.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
import pytest
import json
from converter_app.app import create_app
from converter_app.readers.helper.base import Reader


@pytest.fixture()
def app():
Expand All @@ -27,6 +29,7 @@ def client(app):
def runner(app):
return app.test_cli_runner()


@pytest.fixture()
def reader_params():
client_id = 'dev'
Expand All @@ -36,11 +39,12 @@ def reader_params():
data = json.loads(f.read())

return {
'client_id': client_id,
'reader_data': data,
'reader_id': reader_id,
'client_id': client_id,
'reader_data': data,
'reader_id': reader_id,
}


@pytest.fixture()
def test_reader(reader_params):
return Reader(**reader_params)
return Reader(**reader_params)
47 changes: 0 additions & 47 deletions tests/test_cif.py

This file was deleted.

35 changes: 0 additions & 35 deletions tests/test_gcd.py

This file was deleted.

0 comments on commit 9078726

Please sign in to comment.