Remove group/tests/, it only contains two tests (on a fixture, not

really on any IETF code) and it clashes with the tests in group/tests.py
 - Legacy-Id: 6932
This commit is contained in:
Ole Laursen 2013-12-16 11:53:10 +00:00
parent 8017c8eaf2
commit 3d7b349e20
2 changed files with 0 additions and 32 deletions

View file

@ -1,13 +0,0 @@
# Copyright The IETF Trust 2012, All Rights Reserved
"""
The test cases are split into multiple files.
"""
import sys
from ietf.utils import TestCase
from datetime import datetime
# actual tests are distributed among a set of files in subdir tests/
from ietf.group.tests.workinggroups import WorkingGroupTestCase

View file

@ -1,19 +0,0 @@
import sys
from ietf.utils import TestCase
from ietf.group.models import Group
class WorkingGroupTestCase(TestCase):
# See ietf.utils.test_utils.TestCase for the use of perma_fixtures vs. fixtures
fixtures = [ 'workinggroups', ]
perma_fixtures = []
def test_FindOneWg(self):
one = Group.objects.filter(acronym = 'roll')
self.assertIsNotNone(one)
def test_ActiveWgGroupList(self):
groups = Group.objects.active_wgs()
self.assertEqual(groups.count(), 151)