[svn r58111] make the tests runnable also under pypy

--HG--
branch : trunk
This commit is contained in:
pedronis 2008-09-13 16:38:06 +02:00
parent 2a706fc8ae
commit 89814706bc
1 changed files with 6 additions and 2 deletions

View File

@ -1,7 +1,11 @@
import py
from filelog import session
try:
from filelog import session
except ImportError:
# convenience, make these tests runnable where fielog lives under pypy
from pypy.tool.pytest.filelog import session
import os, StringIO
from py.__.test.collect import Node, Item, FSCollector