Example #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))
Example #2
0
 def test_run_missing_option(self):
     self.assertEqual(False, run(self.missing_option))
Example #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))
Example #4
0
 def test_run_bad_command_output(self):
     test_string = run(self.bad_command)
     self.assertEqual(False, run(self.bad_command))
Example #5
0
 def test_run_bad_command(self):
     self.assertEqual(False, run(self.bad_command))
Example #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
Example #7
0
 def test_run_good_command(self):
     self.assertEqual(b"test command\n", run(self.good_command))
Example #8
0
 def test_run_missing_option(self):
     self.assertEqual(False, run(self.missing_option))
Example #9
0
 def test_run_bad_command_output(self):
     test_string = run(self.bad_command)
     self.assertEqual(False, run(self.bad_command))
Example #10
0
 def test_run_bad_command(self):
     self.assertEqual(False, run(self.bad_command))
Example #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
Example #12
0
 def test_run_good_command(self):
     self.assertEqual(b"test command\n", run(self.good_command))