make sure we get an absolute path when writing the genscript file

--HG--
branch : trunk
This commit is contained in:
holger krekel
2010-01-18 16:48:20 +01:00
parent 30b756a1a2
commit d3c0ff3a1f
2 changed files with 6 additions and 3 deletions

View File

@@ -7,9 +7,10 @@ def pytest_funcarg__standalone(request):
class Standalone:
def __init__(self, request):
self.testdir = request.getfuncargvalue("testdir")
self.script = self.testdir.tmpdir.join("mypytest")
result = self.testdir.runpytest("--genscript=%s" % self.script)
script = "mypytest"
result = self.testdir.runpytest("--genscript=%s" % script)
assert result.ret == 0
self.script = self.testdir.tmpdir.join(script)
assert self.script.check()
def run(self, anypython, testdir, *args):