Пример #1
0
 def test_run_bad_command_output(self):
     with self.assertRaises(
             SystemExit
     ):  # raises SystemExit when suppress_exit_status_call = False
         self.assertEqual(
             False,
             run(self.bad_command, suppress_exit_status_call=False))
Пример #2
0
 def test_run_missing_option(self):
     self.assertEqual(False, run(self.missing_option))
Пример #3
0
 def test_run_bad_command_output(self):
     with self.assertRaises(SystemExit): # raises SystemExit when suppress_exit_status_call = False
         self.assertEqual(False, run(self.bad_command, suppress_exit_status_call=False))
Пример #4
0
 def test_run_bad_command_output(self):
     test_string = run(self.bad_command)
     self.assertEqual(False, run(self.bad_command))
Пример #5
0
 def test_run_bad_command(self):
     self.assertEqual(False, run(self.bad_command))
Пример #6
0
 def test_run_good_command_suppress_stdout(self):
     self.assertEqual(b"test command\n", run(self.good_command, suppress_stdout=True)) # still receive return value when stout print suppressed
Пример #7
0
 def test_run_good_command(self):
     self.assertEqual(b"test command\n", run(self.good_command))
Пример #8
0
 def test_run_missing_option(self):
     self.assertEqual(False, run(self.missing_option))
Пример #9
0
 def test_run_bad_command_output(self):
     test_string = run(self.bad_command)
     self.assertEqual(False, run(self.bad_command))
Пример #10
0
 def test_run_bad_command(self):
     self.assertEqual(False, run(self.bad_command))
Пример #11
0
 def test_run_good_command_suppress_stdout(self):
     self.assertEqual(
         b"test command\n", run(self.good_command, suppress_stdout=True)
     )  # still receive return value when stout print suppressed
Пример #12
0
 def test_run_good_command(self):
     self.assertEqual(b"test command\n", run(self.good_command))