Esempio n. 1
0
 def test_TestCommand_get_run_command_outside_setUp_fails(self):
     self.dirty()
     ui = UI()
     ui.here = self.tempdir
     command = TestCommand(ui, None)
     self.set_config('[DEFAULT]\ntest_command=foo\n')
     self.assertThat(command.get_run_command, raises(TypeError))
     command.setUp()
     command.cleanUp()
     self.assertThat(command.get_run_command, raises(TypeError))
Esempio n. 2
0
 def test_TestCommand_is_a_fixture(self):
     ui = UI()
     ui.here = self.tempdir
     command = TestCommand(ui, None)
     command.setUp()
     command.cleanUp()