Created
September 5, 2013 21:39
-
-
Save mythmon/6456553 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/kitsune/offline/tests/test_views.py b/kitsune/offline/tests/test_views.py | |
index e3dc13b..b65155f 100644 | |
--- a/kitsune/offline/tests/test_views.py | |
+++ b/kitsune/offline/tests/test_views.py | |
@@ -16,6 +16,13 @@ from kitsune.wiki.tests import document, revision | |
class OfflineViewTests(TestCase): | |
+ def setUp(self): | |
+ super(OfflineViewTests, self).setUp() | |
+ try: | |
+ redis_client('default').flushdb() | |
+ except RedisError: | |
+ raise SkipTest | |
+ | |
def _create_bundle(self, prod, locale=settings.WIKI_DEFAULT_LANGUAGE): | |
p = product(title=prod, save=True) | |
t = topic(title='topic1', product=p, save=True) | |
@@ -51,10 +58,7 @@ class OfflineViewTests(TestCase): | |
d.parent = parent(i) | |
d.save() | |
- try: | |
- build_kb_bundles((prod, )) | |
- except RedisError: | |
- pass # do nothing as we should gracefully fallback. | |
+ build_kb_bundles((prod, )) | |
def test_get_single_bundle(self): | |
self._create_bundle('firefox', 'en-US') | |
@@ -99,11 +103,6 @@ class OfflineViewTests(TestCase): | |
url = (reverse('offline.bundle_meta') + | |
'?locale=en-US&product=firefox') | |
- try: | |
- redis_client('default') | |
- except RedisError: | |
- raise SkipTest | |
- | |
resp = self.client.get(url, follow=True) | |
meta = json.loads(resp.content) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment