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 495b82d commit 1573e06Copy full SHA for 1573e06
tests/contrib/tests.py
@@ -121,6 +121,9 @@ def test_map_reduce_with_custom_primary_key(self, inline=False):
121
class RawQueryTests(TestCase):
122
123
def setUp(self):
124
+
125
+ MapReduceModel.objects.all().delete()
126
127
for i in xrange(10):
128
MapReduceModel.objects.create(n=i, m=i * 2)
129
@@ -156,6 +159,10 @@ def test_raw_update(self):
156
159
# TODO: Line breaks.
157
160
class FullTextTest(TestCase):
158
161
162
+ def setUp(self):
163
+ Post.objects.all().delete()
164
165
166
def test_simple_fulltext(self):
167
blog = Post(content="simple, full text.... search? test")
168
blog.save()
0 commit comments