def test_should_run_plugin_wildcard(self):
     self.assertTrue(migration.should_run(['foo'], ['*']))
Beispiel #2
0
 def test_should_run_plugin_wildcard(self):
     self.assertTrue(migration.should_run(['foo'], ['*']))
 def test_should_run_plugin_in_list(self):
     self.assertTrue(migration.should_run(['foo'], ['foo', 'bar']))
     self.assertFalse(migration.should_run(['foo'], ['bar']))
Beispiel #4
0
 def test_should_run_plugin_in_list(self):
     self.assertTrue(migration.should_run(['foo'], ['foo', 'bar']))
     self.assertFalse(migration.should_run(['foo'], ['bar']))