From a0fcdc83cbc2b440a5836313b2afd1a35698f5ef Mon Sep 17 00:00:00 2001 From: HombreLaser Date: Tue, 12 Mar 2024 23:46:02 -0600 Subject: AƱade pruebas MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tests/conftest.py | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 tests/conftest.py (limited to 'tests/conftest.py') diff --git a/tests/conftest.py b/tests/conftest.py new file mode 100644 index 0000000..f3dbc41 --- /dev/null +++ b/tests/conftest.py @@ -0,0 +1,36 @@ +from src.program import Program +from glob import iglob +import os +import pytest + + +@pytest.fixture +def row_at_program(): + return Program(args=['-f', './tests/test_table.csv', '-c', 'row-at', '2']) + + +@pytest.fixture +def get_rows_program(): + return Program(args=['-f', './tests/test_table.csv', '-c', 'get-rows', '2']) + + +@pytest.fixture +def insert_program(): + return Program(args=['-f', './tests/test_table.csv', '-c', 'insert', '1969,Ubik,Philip K. Dick']) + + +@pytest.fixture +def search_program(): + return Program(args=['-f', './tests/test_table.csv', '-c', 'search', 'Ten Days that Shook the World']) + + +@pytest.fixture +def delete_at_program(): + return Program(args=['-f', './tests/test_table.csv', '-c', 'delete-at', '1']) + + +@pytest.fixture(scope='session', autouse=True) +def delete_created_csv_files(): + yield + for file in iglob("./new_*.csv"): + os.remove(file) \ No newline at end of file -- cgit v1.2.3