diff options
author | Matthew Lemon <y@yulqen.org> | 2024-05-16 21:00:47 +0100 |
---|---|---|
committer | Matthew Lemon <y@yulqen.org> | 2024-05-16 21:00:47 +0100 |
commit | 9f9b3d588dfabe8c57306d9adf371968a60364d3 (patch) | |
tree | e395af5bde21474e5e9a020952fb23f299a676a2 /pyblackbird_cc/resources/tests | |
parent | 557b2f0d01d6177f14c96fda8bf39cfd3f22f6ac (diff) |
wip: improving the test setup
Diffstat (limited to 'pyblackbird_cc/resources/tests')
-rw-r--r-- | pyblackbird_cc/resources/tests/conftest.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/pyblackbird_cc/resources/tests/conftest.py b/pyblackbird_cc/resources/tests/conftest.py index 0d1ed87..a5c1e41 100644 --- a/pyblackbird_cc/resources/tests/conftest.py +++ b/pyblackbird_cc/resources/tests/conftest.py @@ -1,8 +1,9 @@ import pytest -from pyblackbird_cc.resources.factories import ResourceModelFactory +from pyblackbird_cc.resources.factories import ResourceModelFactory, PDFPageSnapshotModelFactory @pytest.fixture() def resources(): + snapshots = PDFPageSnapshotModelFactory.create_batch(3) return ResourceModelFactory.create_batch(5) |