예제 #1
0
파일: test_utils.py 프로젝트: hivetech/dna
 def test_not_running_process_detection(self):
     self.assertFalse(utils.is_running('no_chance_this_program_is_running'))
예제 #2
0
파일: test_utils.py 프로젝트: hivetech/dna
 def test_not_running_process_detection(self):
     self.assertFalse(utils.is_running('no_chance_this_program_is_running'))
예제 #3
0
파일: test_utils.py 프로젝트: hivetech/dna
 def test_running_process_detection(self):
     self.assertTrue(utils.is_running(self.always_running_process))
예제 #4
0
파일: test_utils.py 프로젝트: hivetech/dna
 def test_running_process_detection(self):
     self.assertTrue(utils.is_running(self.always_running_process))