move down py/impl/XYZ to py/_XYZ

--HG--
branch : trunk
This commit is contained in:
holger krekel
2010-01-13 17:15:54 +01:00
parent 5c27076d32
commit 9da1ba40ed
132 changed files with 229 additions and 231 deletions

View File

@@ -1,6 +1,6 @@
import py
from py.plugin import pytest_runner as runner
from py.impl.code.code import ReprExceptionInfo
from py._plugin import pytest_runner as runner
from py._code.code import ReprExceptionInfo
class TestSetupState:
def test_setup(self, testdir):
@@ -187,10 +187,10 @@ class BaseFunctionalTests:
assert rep.when == "call"
def test_exit_propagates(self, testdir):
from py.impl.test.outcome import Exit
from py._test.outcome import Exit
try:
testdir.runitem("""
from py.impl.test.outcome import Exit
from py._test.outcome import Exit
def test_func():
raise Exit()
""")
@@ -206,7 +206,7 @@ class TestExecutionNonForked(BaseFunctionalTests):
return f
def test_keyboardinterrupt_propagates(self, testdir):
from py.impl.test.outcome import Exit
from py._test.outcome import Exit
try:
testdir.runitem("""
def test_func():