def run_rvirtualenv_command(self, virtualenv): os.chdir(self.directory) self.install_venv_in_isolation(virtualenv) pythonrc = path.join(virtualenv, 'pythonrc.py') self.assertTrue(path.exists(pythonrc)) python = path.join(get_script_path(virtualenv), 'python.py') self.assertTrue(path.exists(python))
def test_whole_generate(self): generate(self.virtualenv) pybin = path.join(get_script_path(self.virtualenv), 'python.py') self.assertTrue(path.exists(pybin)) pyrc = path.join(self.virtualenv, 'pythonrc.py') self.assertTrue(path.exists(pyrc)) content = open(pyrc, 'r').read() self.assertFalse('# INSERT LIB DIRS HERE' in content)
def setUp(self): super(TestRVirtualEnv, self).setUp() self.python = path.join(get_script_path(self.virtualenv), 'python.py')