From 9f9b3d588dfabe8c57306d9adf371968a60364d3 Mon Sep 17 00:00:00 2001 From: Matthew Lemon Date: Thu, 16 May 2024 21:00:47 +0100 Subject: wip: improving the test setup --- pyblackbird_cc/resources/tests/conftest.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'pyblackbird_cc/resources/tests/conftest.py') 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) -- cgit v1.2.3