File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 22import sys
33import json
44
5- from django .test import Client , TestCase
5+ from django .test import Client
66from django .conf import settings
77from django .utils .importlib import import_module
88from django .db import models
1212
1313import debug # pyflakes:ignore
1414
15+ from ietf .utils .test_utils import TestCase
16+
1517OMITTED_APPS = (
1618 'ietf.secr.meetings' ,
1719 'ietf.secr.proceedings' ,
Original file line number Diff line number Diff line change 1818from django .template .defaulttags import URLNode
1919from django .templatetags .static import StaticNode
2020from django .template .loaders .filesystem import Loader
21- from django .test import TestCase
2221
2322import debug # pyflakes:ignore
2423
2726from ietf .utils .mail import send_mail_text , send_mail_mime , outbox
2827from ietf .utils .test_data import make_test_data
2928from ietf .utils .test_runner import get_template_paths , set_coverage_checking
29+ from ietf .utils .test_utils import TestCase
3030from ietf .group .models import Group
3131
3232skip_wiki_glue_testing = False
Original file line number Diff line number Diff line change 44debug .debug = True
55
66from django .core .urlresolvers import reverse
7- from django .test import TestCase
87
98from tastypie .test import ResourceTestCaseMixin
109
1110from ietf .utils .test_data import make_test_data
11+ from ietf .utils .test_utils import TestCase
1212
1313class RestApi (ResourceTestCaseMixin , TestCase ):
1414 def list_recursively (self , resource , format ):
You can’t perform that action at this time.
0 commit comments