コード例 #1
0
ファイル: test_log.py プロジェクト: pymocky/pymocky
    def test_fail_with_fatal(self):
        with patch("sys.stdout", new=StringIO()) as output:
            exited = False

            try:
                Log.fail("fail message", True)
            except SystemExit as e:
                if e.code == 10:
                    exited = True

            self.assertIn("fail message", output.getvalue().strip())
            self.assertEqual(exited, True)
コード例 #2
0
ファイル: test_log.py プロジェクト: pymocky/pymocky
 def test_fail(self):
     with patch("sys.stdout", new=StringIO()) as output:
         Log.fail("fail message", False)
         self.assertIn("fail message", output.getvalue().strip())