We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a5d1aca commit 435b109Copy full SHA for 435b109
2 files changed
ietf/redirects/tests.py
@@ -33,6 +33,8 @@
33
34
from ietf.utils.test_utils import split_url, TestCase
35
36
+import debug # pyflakes:ignore
37
+
38
REDIRECT_TESTS = {
39
40
# announcements
@@ -87,6 +89,8 @@
87
89
}
88
90
91
class RedirectsTests(TestCase):
92
+ fixtures = ["initial_data.xml", ]
93
94
def test_redirects(self):
95
for src, dst in REDIRECT_TESTS.items():
96
baseurl, args = split_url(src)
ietf/redirects/views.py
@@ -4,6 +4,8 @@
4
from django.shortcuts import get_object_or_404
5
import re
6
7
8
9
from ietf.redirects.models import Redirect, Command
10
11
def redirect(request, path="", script=""):
0 commit comments