Example #1
0
		def test_sys_dir_exists_missing_dir(self):
			"""Test for existence of a directory that does not exist"""
			self.assertEqual(False, system.dir_exists(os.path.join("bogusdir", "anotherdir")))
Example #2
0
		def test_sys_dir_exists(self):
			"""Test for existence of a directory that exists"""
			self.assertEqual(True, system.dir_exists(self.sysdirpath))