Merge pull request #2467 from dnephin/remove_migrate_to_labels

Remove migrate-to-labels.
This commit is contained in:
Aanand Prasad 2015-12-07 14:31:23 +00:00
commit ecf2dd11f9
10 changed files with 7 additions and 484 deletions

View file

@ -74,12 +74,6 @@ class CLITestCase(unittest.TestCase):
self.assertIn('Usage: up', str(ctx.exception))
def test_command_help_dashes(self):
with self.assertRaises(SystemExit) as ctx:
TopLevelCommand().dispatch(['help', 'migrate-to-labels'], None)
self.assertIn('Usage: migrate-to-labels', str(ctx.exception))
def test_command_help_nonexistent(self):
with self.assertRaises(NoSuchCommand):
TopLevelCommand().dispatch(['help', 'nonexistent'], None)