• Home
  • Raw
  • Download

Lines Matching refs:assertPathEqual

78     def assertPathEqual(self, path1, path2):  member in NtpathTestCase
268 self.assertPathEqual(ntpath.realpath(ABSTFN + "1"), ABSTFN)
269 self.assertPathEqual(ntpath.realpath(os.fsencode(ABSTFN + "1")),
292 self.assertPathEqual(ntpath.realpath(ABSTFN + "1"), ABSTFN)
315 self.assertPathEqual(ntpath.realpath("broken"),
317 self.assertPathEqual(ntpath.realpath(r"broken\foo"),
321 self.assertPathEqual(ntpath.realpath(r"broken1"),
323 self.assertPathEqual(ntpath.realpath(r"broken1\baz"),
325 self.assertPathEqual(ntpath.realpath("broken2"),
327 self.assertPathEqual(ntpath.realpath("broken3"),
329 self.assertPathEqual(ntpath.realpath("broken4"),
331 self.assertPathEqual(ntpath.realpath("broken5"),
334 self.assertPathEqual(ntpath.realpath(b"broken"),
336 self.assertPathEqual(ntpath.realpath(rb"broken\foo"),
338 self.assertPathEqual(ntpath.realpath(rb"broken1"),
340 self.assertPathEqual(ntpath.realpath(rb"broken1\baz"),
342 self.assertPathEqual(ntpath.realpath(b"broken2"),
344 self.assertPathEqual(ntpath.realpath(rb"broken3"),
346 self.assertPathEqual(ntpath.realpath(b"broken4"),
348 self.assertPathEqual(ntpath.realpath(b"broken5"),
366 self.assertPathEqual(ntpath.realpath(ABSTFN), ABSTFN)
376 self.assertPathEqual(ntpath.realpath(ABSTFN + "1\\.."),
378 self.assertPathEqual(ntpath.realpath(ABSTFN + "1\\..\\x"),
381 self.assertPathEqual(ntpath.realpath(ABSTFN + "1\\..\\"
389 self.assertPathEqual(ntpath.realpath(ABSTFN + "a"), ABSTFN + "a")
393 self.assertPathEqual(ntpath.realpath(ABSTFN + "c"), ABSTFN + "c")
396 self.assertPathEqual(ntpath.realpath(ntpath.basename(ABSTFN)), ABSTFN)
420 self.assertPathEqual(ntpath.realpath(ABSTFN + "1\\..", strict=True),
459 self.assertPathEqual(ntpath.realpath(ABSTFN + "3link"),
461 self.assertPathEqual(ntpath.realpath(ABSTFN + "3.link"),
471 self.assertPathEqual(ntpath.realpath("\\\\?\\" + ABSTFN + "3link"),
473 self.assertPathEqual(ntpath.realpath("\\\\?\\" + ABSTFN + "3.link"),
500 self.assertPathEqual(test_file_long, ntpath.realpath(test_file_short))
503 self.assertPathEqual(test_file_long, ntpath.realpath("file.txt"))
505 self.assertPathEqual(test_file_long, ntpath.realpath("file.txt"))
507 self.assertPathEqual(test_file_long, ntpath.realpath("file.txt"))
806 self.assertPathEqual(func(self.file_path), func(self.file_name))
862 self.assertPathEqual(common_path, self.file_name)