show pytest.__version__ not pylib

This commit is contained in:
holger krekel
2010-10-31 18:57:44 +01:00
parent 35969e13ae
commit 03924d205d
2 changed files with 3 additions and 4 deletions

View File

@@ -1,13 +1,12 @@
import py, os
import py, pytest,os
from pytest.plugin.helpconfig import collectattr
def test_version(testdir):
assert py.version == py.__version__
result = testdir.runpytest("--version")
assert result.ret == 0
#p = py.path.local(py.__file__).dirpath()
result.stderr.fnmatch_lines([
'*py.test*%s*imported from*' % (py.version, )
'*py.test*%s*imported from*' % (pytest.__version__, )
])
def test_help(testdir):