Lines Matching refs:path
15 TEST_DATA_DIR = os.path.join(os.path.dirname(__file__), "data")
16 PY2_TEST_MODULE = os.path.join(TEST_DATA_DIR, "py2_test_grammar.py")
59 self.py2_src_dir = os.path.join(self.temp_dir, "python2_project")
60 self.py3_dest_dir = os.path.join(self.temp_dir, "python3_project")
65 open(os.path.join(self.py2_src_dir, "__init__.py"), "w").close()
68 self.setup_files.append(os.path.basename(PY2_TEST_MODULE))
69 self.trivial_py2_file = os.path.join(self.py2_src_dir, "trivial.py")
70 self.init_py2_file = os.path.join(self.py2_src_dir, "__init__.py")
96 os.path.join(self.py2_src_dir, name),
97 os.path.join(self.py3_dest_dir, name+suffix)), stderr)
109 expected_files = set(os.path.basename(name) for name in py2_files)
134 self.assertEqual(set([os.path.basename(self.trivial_py2_file)]),