Example #1
0
 def test_should_run_plugin_wildcard(self):
     self.assertTrue(migration.should_run(['foo'], ['*']))
Example #2
0
 def test_should_run_plugin_wildcard(self):
     self.assertTrue(migration.should_run(['foo'], ['*']))
Example #3
0
 def test_should_run_plugin_in_list(self):
     self.assertTrue(migration.should_run(['foo'], ['foo', 'bar']))
     self.assertFalse(migration.should_run(['foo'], ['bar']))
Example #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']))