Changeset View
Changeset View
Standalone View
Standalone View
blender_fund_main/tests/test_receipts_pdf.py
| from django.conf import settings | from django.conf import settings | ||||
| from django.contrib.auth import get_user_model | from django.contrib.auth import get_user_model | ||||
| from django.test import override_settings | from django.test import override_settings | ||||
| from django.urls import reverse | from django.urls import reverse | ||||
| from looper.tests import AbstractLooperTestCase | from looper.tests.base import AbstractLooperTestCase | ||||
| User = get_user_model() | User = get_user_model() | ||||
| production_storage = settings.STATICFILES_STORAGE | production_storage = settings.STATICFILES_STORAGE | ||||
| # This test needs to use the static file storage we also use in production, | # This test needs to use the static file storage we also use in production, | ||||
| # regardless of what the superclass overrides. There was an issue finding | # regardless of what the superclass overrides. There was an issue finding | ||||
| Show All 34 Lines | |||||