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:
Ole Laursen 2013-12-16 13:16:29 +00:00
parent beda4bafcd
commit d86789608a
3 changed files with 0 additions and 21 deletions

View file

@ -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()

View file

@ -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"

View file

@ -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()