コード例 #1
0
ファイル: test_main.py プロジェクト: jaunis/xivo-stat
    def test_pidfile_removed_on_error(self, mock_remove_pid_file):
        stat.main()

        self.assertEqual(mock_remove_pid_file.call_count, 1)
コード例 #2
0
ファイル: test_main.py プロジェクト: jaunis/xivo-stat
    def test_pidfile_removed_on_error(self, mock_remove_pid_file):
        stat.main()

        self.assertEqual(mock_remove_pid_file.call_count, 1)
コード例 #3
0
ファイル: test_main.py プロジェクト: jaunis/xivo-stat
    def test_main_not_running(self, mock_execute_command):
        stat.main()

        self.assertEqual(mock_execute_command.call_count, 1)
コード例 #4
0
ファイル: test_main.py プロジェクト: jaunis/xivo-stat
    def test_main_not_running(self, mock_execute_command):
        stat.main()

        self.assertEqual(mock_execute_command.call_count, 1)