diff options
author | Matthew Lemon <y@yulqen.org> | 2024-05-22 16:39:06 +0100 |
---|---|---|
committer | Matthew Lemon <y@yulqen.org> | 2024-05-22 16:39:19 +0100 |
commit | befd3e81321e0f5989d68a6838b4a17af51b1e64 (patch) | |
tree | bf59889e587bca347dbc3807004b19c4a69ecfb6 /pyblackbird_cc/resources/tests/conftest.py | |
parent | ff1aa3aa113e507f870eba4c96099946f154fb22 (diff) |
wip: starting to test the featured resource view
Diffstat (limited to 'pyblackbird_cc/resources/tests/conftest.py')
-rw-r--r-- | pyblackbird_cc/resources/tests/conftest.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/pyblackbird_cc/resources/tests/conftest.py b/pyblackbird_cc/resources/tests/conftest.py index 0d1ed87..9b401ba 100644 --- a/pyblackbird_cc/resources/tests/conftest.py +++ b/pyblackbird_cc/resources/tests/conftest.py @@ -6,3 +6,8 @@ from pyblackbird_cc.resources.factories import ResourceModelFactory @pytest.fixture() def resources(): return ResourceModelFactory.create_batch(5) + + +@pytest.fixture() +def resource(): + return ResourceModelFactory() |