[svn r58340] this seems to need to be this way, otherwise a py.lookup from PATH will be used or a failure will occur instead

--HG--
branch : trunk
This commit is contained in:
pedronis 2008-09-22 21:30:13 +02:00
parent e63da23050
commit aeca93f0b3
1 changed files with 1 additions and 1 deletions

View File

@ -4,7 +4,7 @@ from py.__.test.testing.acceptance_test import AcceptBase
class TestPyLookup(AcceptBase):
def test_basic(self):
p = self.makepyfile(hello="def x(): pass")
result = self.run("py.lookup", "pass")
result = self.runpybin("py.lookup", "pass")
suptest.assert_lines_contain_lines(result.outlines,
['%s:*def x(): pass' %(p.basename)]
)