示例#1
0
 def test_should_normalize_mixture(self):
     normalized = fakeio._normalize_path("C:\\somepath/something.txt")
     self.assertEqual(normalized, "C:/somepath/something.txt")
示例#2
0
 def test_should_normalize_mixture(self):
     normalized = fakeio._normalize_path("C:\\somepath/something.txt")
     self.assertEqual(normalized, "C:/somepath/something.txt")
示例#3
0
 def test_should_normalize_unix_path(self):
     normalized = fakeio._normalize_path("/somepath/something.txt")
     self.assertEqual(normalized, "/somepath/something.txt")
示例#4
0
 def test_should_normalize_unix_path(self):
     normalized = fakeio._normalize_path("/somepath/something.txt")
     self.assertEqual(normalized, "/somepath/something.txt")