summaryrefslogtreecommitdiffstats
path: root/patchwork/tests/test_encodings.py
diff options
context:
space:
mode:
authorJeremy Kerr <jk@ozlabs.org>2015-06-05 14:32:26 +0800
committerJeremy Kerr <jk@ozlabs.org>2015-06-05 14:37:09 +0800
commit46e4ad955a2a7ba4f32b76a74b350140a1e3d761 (patch)
tree02892290f921f567d1778aa11ee1168e2e7c980a /patchwork/tests/test_encodings.py
parent7a39d75859c4ee908573726f0a82df85cdb8b845 (diff)
downloadpatchwork-46e4ad955a2a7ba4f32b76a74b350140a1e3d761.tar.bz2
patchwork-46e4ad955a2a7ba4f32b76a74b350140a1e3d761.tar.xz
patchwork: Explicitly load states fixtures
Apps with migrations will no longer load the initial_data fixtures by default. In order to prepare to add migrations to patchwork, rename the initial_data fixture to default_states (to match the default_tags fixture), and explicitly load them in tests that require them. Also, include this step in the INSTALL document. Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
Diffstat (limited to 'patchwork/tests/test_encodings.py')
-rw-r--r--patchwork/tests/test_encodings.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/patchwork/tests/test_encodings.py b/patchwork/tests/test_encodings.py
index b9032bb..b639078 100644
--- a/patchwork/tests/test_encodings.py
+++ b/patchwork/tests/test_encodings.py
@@ -26,6 +26,7 @@ from django.test import TestCase
from django.test.client import Client
class UTF8PatchViewTest(TestCase):
+ fixtures = ['default_states']
patch_filename = '0002-utf-8.patch'
patch_encoding = 'utf-8'
@@ -63,6 +64,7 @@ class UTF8PatchViewTest(TestCase):
defaults.project.delete()
class UTF8HeaderPatchViewTest(UTF8PatchViewTest):
+ fixtures = ['default_states']
patch_filename = '0002-utf-8.patch'
patch_encoding = 'utf-8'
patch_author_name = u'P\xe4tch Author'