diff options
author | Matthew Lemon <y@yulqen.org> | 2024-05-16 16:57:14 +0100 |
---|---|---|
committer | Matthew Lemon <y@yulqen.org> | 2024-05-16 16:57:14 +0100 |
commit | 55e5dfbd51924f1f23e5a651d830206be01e376c (patch) | |
tree | e3ea881742b3afc2c473c890cbfd8d98d20cc4a9 /pyblackbird_cc/resources/tests/conftest.py | |
parent | 65c49ea41ecd8e1cce07db1b258a93132cb634d4 (diff) |
wip: starting to test feature resource functionality with factories
Diffstat (limited to '')
-rw-r--r-- | pyblackbird_cc/resources/tests/conftest.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/pyblackbird_cc/resources/tests/conftest.py b/pyblackbird_cc/resources/tests/conftest.py new file mode 100644 index 0000000..0d1ed87 --- /dev/null +++ b/pyblackbird_cc/resources/tests/conftest.py @@ -0,0 +1,8 @@ +import pytest + +from pyblackbird_cc.resources.factories import ResourceModelFactory + + +@pytest.fixture() +def resources(): + return ResourceModelFactory.create_batch(5) |