diff options
Diffstat (limited to 'pyblackbird_cc/resources/tests/conftest.py')
-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) |