Remove use of "groupgroup" fixture from Secretariat apps, it looks
like they don't actually depend on it, and the fixture itself is unfortunately not complete so Django refuses to load it - Legacy-Id: 6938
This commit is contained in:
parent
beda4bafcd
commit
d86789608a
|
@ -21,9 +21,6 @@ def augment_data():
|
|||
by=system)
|
||||
|
||||
class MainTestCase(TestCase):
|
||||
# See ietf.utils.test_utils.TestCase for the use of perma_fixtures vs. fixtures
|
||||
perma_fixtures = ['groupgroup', 'groupevents']
|
||||
|
||||
def test_main(self):
|
||||
"Main Test"
|
||||
draft = make_test_data()
|
||||
|
|
|
@ -8,21 +8,6 @@ import debug
|
|||
SECR_USER='secretary'
|
||||
|
||||
class GroupsTest(TestCase):
|
||||
# See ietf.utils.test_utils.TestCase for the use of perma_fixtures vs. fixtures
|
||||
perma_fixtures = ['persons','groupgroup',]
|
||||
"""
|
||||
perma_fixtures = [ 'acronym.json',
|
||||
'area.json',
|
||||
'areadirector',
|
||||
'areagroup.json',
|
||||
'goalmilestone',
|
||||
'iesglogin.json',
|
||||
'ietfwg',
|
||||
'personororginfo.json',
|
||||
'wgchair.json',
|
||||
'wgstatus.json',
|
||||
'wgtype.json' ]
|
||||
"""
|
||||
# ------- Test Search -------- #
|
||||
def test_search(self):
|
||||
"Test Search"
|
||||
|
|
|
@ -15,9 +15,6 @@ def augment_data():
|
|||
Group.objects.create(acronym='dummy',name='Dummy Group',type_id='sdo')
|
||||
|
||||
class MainTestCase(TestCase):
|
||||
# See ietf.utils.test_utils.TestCase for the use of perma_fixtures vs. fixtures
|
||||
perma_fixtures = ['persons', 'groupgroup']
|
||||
|
||||
def test_main(self):
|
||||
"Main Test"
|
||||
augment_data()
|
||||
|
|
Loading…
Reference in a new issue