Esempio n. 1
0
 def test_get_command(self):
     fixture_loader = environment.ModuleLoader(
         'tests.CLI.environment_tests',
         'fixture_command',
     )
     self.env.commands = {'fixture:run': fixture_loader}
     command = self.env.get_command('fixture', 'run')
     self.assertIsInstance(command, click.Command)
 def test_get_command(self):
     mod_path = 'SoftLayer.tests.CLI.environment_tests'
     fixture_loader = environment.ModuleLoader(mod_path, 'fixture_command')
     self.env.commands = {'fixture:run': fixture_loader}
     command = self.env.get_command('fixture', 'run')
     self.assertIsInstance(command, click.Command)