Login

Reset cache between tests

Author:
peterbe
Posted:
November 11, 2009
Language:
Python
Version:
1.1
Score:
1 (after 1 ratings)

I don't understand why the cache is accumulated between the tests. I thought one of the axioms of unit testing is that the tests should not affect each other.

Couldn't find anything that explains why it's done this way but it seems a bit strange. Anybody know if there's a reason or is this a reason for me to upload a patch to Django code?

1
2
3
4
5
6
7
8
from django.test import TestCase
from django.core.cache import cache
from django.conf import settings

class MyTests(TestCase):
    def tearDown(self):
        assert settings.CACHE_BACKEND == 'locmem:///'
        [cache.delete(key) for key in cache._cache.keys()]

More like this

  1. Form field with fixed value by roam 1 week, 5 days ago
  2. New Snippet! by Antoliny0919 2 weeks, 4 days ago
  3. Add Toggle Switch Widget to Django Forms by OgliariNatan 3 months, 1 week ago
  4. get_object_or_none by azwdevops 6 months, 4 weeks ago
  5. Mask sensitive data from logger by agusmakmun 8 months, 3 weeks ago

Comments

sosaucily (on September 12, 2015):

Update for newer versions of Django, use cache.clear()

#

Please login first before commenting.