예제 #1
0
 def test_gentoo_is_openrc(self):
     with mock.patch('os.path.isdir', return_value=True):
         self.assertEqual(gentoo.is_openrc(), True)
     with mock.patch('os.path.isdir', return_value=False):
         self.assertEqual(gentoo.is_openrc(), False)
예제 #2
0
파일: test_all.py 프로젝트: ApusApp/ceph
 def test_gentoo_is_openrc(self):
     with mock.patch('os.path.isdir', return_value=True):
         self.assertEqual(gentoo.is_openrc(), True)
     with mock.patch('os.path.isdir', return_value=False):
         self.assertEqual(gentoo.is_openrc(), False)