summaryrefslogtreecommitdiff
path: root/tests/conftest.py
diff options
context:
space:
mode:
authorDavid Luevano Alvarado <david@luevano.xyz>2023-02-17 01:06:26 -0600
committerDavid Luevano Alvarado <david@luevano.xyz>2023-02-17 01:06:26 -0600
commita5d9664a9264f45b088cc363331b391a40779b40 (patch)
treeb3d94b185706a60dc3159b405ee04068d1b93a2c /tests/conftest.py
parentb0d48558606fabfb582358077c3c909c2bbb63e1 (diff)
finish testing and polishing, add readmev1.0.0
Diffstat (limited to 'tests/conftest.py')
-rw-r--r--tests/conftest.py14
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/conftest.py b/tests/conftest.py
new file mode 100644
index 0000000..df33848
--- /dev/null
+++ b/tests/conftest.py
@@ -0,0 +1,14 @@
+import pytest
+
+
+@pytest.fixture
+def single_var_dict():
+ return {'test': 'value'}
+
+
+@pytest.fixture
+def multi_var_dict():
+ return {'ext': 'jpg',
+ 'test': 'value',
+ 'TEST': 'VALUE',
+ 'SOMETHING_ELSE': 'something_else'}