remove all deprecated functionality and tests

--HG--
branch : trunk
This commit is contained in:
holger krekel
2010-10-13 18:41:53 +02:00
parent 17719b99a1
commit f3fb91e296
13 changed files with 39 additions and 537 deletions

View File

@@ -68,10 +68,9 @@ class DoctestItem(py.test.collect.Item):
class DoctestTextfile(DoctestItem):
def runtest(self):
if not self._deprecated_testexecution():
failed, tot = py.std.doctest.testfile(
str(self.fspath), module_relative=False,
raise_on_error=True, verbose=0)
failed, tot = py.std.doctest.testfile(
str(self.fspath), module_relative=False,
raise_on_error=True, verbose=0)
class DoctestModule(DoctestItem):
def runtest(self):