Esempio n. 1
0
 def testDifferentDirs(self):
     this = os.path.dirname(__file__)
     other = os.path.dirname(th.__file__)
     with self.assertRaises(AssertionError):
         th.assertFoldersEqual(self, this, other)
Esempio n. 2
0
 def testThisFolderAgainstItself(self):
     d = os.path.dirname(__file__)
     th.assertFoldersEqual(self, d, d)