Example #1
0
 def test_is_dot_dir_non_dot_dir(self):
     filename = '.git'
     self.assertFalse(FileUtil.is_dot_dir(filename))
Example #2
0
 def test_is_dot_dir_non_dot_dir(self):
     filename = '.git'
     self.assertFalse(FileUtil.is_dot_dir(filename))
Example #3
0
 def test_is_dot_dir_double_dot(self):
     filename = '..'
     self.assertTrue(FileUtil.is_dot_dir(filename))
Example #4
0
 def test_is_dot_dir_double_dot(self):
     filename = '..'
     self.assertTrue(FileUtil.is_dot_dir(filename))