conftest.py 224 B

12345678910111213
  1. import pytest
  2. from ....themes.models import Theme
  3. @pytest.fixture
  4. def default_theme(db):
  5. return Theme.objects.get(is_default=True)
  6. @pytest.fixture
  7. def theme(db):
  8. return Theme.objects.create(name="Custom theme")