Exemplo n.º 1
0
 def test_fixture_list_no_settings(self):
     self.assertEqual(ColorDjangoTestSuiteRunner.fixture_list('one'),
                      ['one'])
Exemplo n.º 2
0
 def test_fixture_list_no_settings(self):
     self.assertEqual(ColorDjangoTestSuiteRunner.fixture_list("one"), ["one"])
Exemplo n.º 3
0
 def test_fixture_list(self):
     settings.TEST_GLOBAL_FIXTURES = ['one']
     self.assertEqual(ColorDjangoTestSuiteRunner.fixture_list('one'), [])
     settings.TEST_GLOBAL_FIXTURES = []
Exemplo n.º 4
0
 def test_fixture_list(self):
     settings.TEST_GLOBAL_FIXTURES = ["one"]
     self.assertEqual(ColorDjangoTestSuiteRunner.fixture_list("one"), [])
     settings.TEST_GLOBAL_FIXTURES = []