We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 26f3cbe commit aef205dCopy full SHA for aef205d
tests/test_backend.py
@@ -1,7 +1,11 @@
1
-from django.conf import global_settings
+from django.conf import global_settings, settings
2
from mock import patch, Mock
3
from nose.tools import eq_, raises
4
5
+# Initialize django 1.7
6
+settings.configure()
7
+global_settings.configured = True
8
+
9
10
@patch('django.conf.settings', global_settings)
11
def test_patch_params():
0 commit comments