Example #1
0
 def test_enabled(self):
     tests = deepcopy(self.tests)
     tests = list(enabled(tests, {}))
     self.assertNotIn(self.tests[4], tests)
Example #2
0
 def test_enabled(self):
     tests = deepcopy(self.tests)
     tests = list(enabled(tests, {}))
     self.assertNotIn(self.tests[3], tests)
Example #3
0
def test_enabled(tests):
    ref = deepcopy(tests)
    tests = list(enabled(tests, {}))
    assert ref[4] not in tests