Lines Matching refs:path
17 cmd.install_dir = inst = os.path.join(pkg_dir, 'inst')
21 # - a tuple with a path, and a list of file
22 one = os.path.join(pkg_dir, 'one')
24 inst2 = os.path.join(pkg_dir, 'inst2')
25 two = os.path.join(pkg_dir, 'two')
37 rtwo = os.path.split(two)[-1]
38 self.assertTrue(os.path.exists(os.path.join(inst2, rtwo)))
39 rone = os.path.split(one)[-1]
40 self.assertTrue(os.path.exists(os.path.join(inst, rone)))
50 self.assertTrue(os.path.exists(os.path.join(inst2, rtwo)))
51 self.assertTrue(os.path.exists(os.path.join(inst, rone)))
55 cmd.root = os.path.join(pkg_dir, 'root')
56 inst3 = os.path.join(cmd.install_dir, 'inst3')
57 inst4 = os.path.join(pkg_dir, 'inst4')
58 three = os.path.join(cmd.install_dir, 'three')
68 self.assertTrue(os.path.exists(os.path.join(inst2, rtwo)))
69 self.assertTrue(os.path.exists(os.path.join(inst, rone)))