Skip to content

Commit 37d99c4

Browse files
committed
changes to tests
- Legacy-Id: 5177
1 parent 565f15b commit 37d99c4

1 file changed

Lines changed: 13 additions & 2 deletions

File tree

ietf/secr/sreq/tests.py

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,22 @@
1+
import unittest
2+
from django.conf import settings
3+
from django.contrib.auth.models import User
14
from django.core.urlresolvers import reverse
25
from django.test import TestCase
3-
from django.contrib.auth.models import User
4-
6+
from django.test.client import Client
57
from ietf.group.models import Group
68
from ietf.ietfauth.decorators import has_role
9+
from ietf.utils.test_utils import SimpleUrlTestCase, RealDatabaseTest
10+
from ietf.idtracker.models import Role
711

12+
from urlparse import urlsplit
813
from pyquery import PyQuery
914

15+
class SreqUrlTestCase(SimpleUrlTestCase):
16+
def testUrls(self):
17+
self.doTestUrls(__file__)
18+
19+
"""
1020
SEC_USER='rcross'
1121
WG_USER=''
1222
AD_USER=''
@@ -80,3 +90,4 @@ class RetrievePreviousCase(TestCase):
8090
# test get previous exists/doesn't exist
8191
# test that groups scheduled and unscheduled add up to total groups
8292
# test locking function, access by unauthorized
93+
"""

0 commit comments

Comments
 (0)