[svn r57320] remove test, misc, doc, io, and code directories

that are to come from the event branch with the next commit.

--HG--
branch : trunk
This commit is contained in:
hpk
2008-08-16 17:10:17 +02:00
parent 9ceb61056e
commit 7428eadf7d
185 changed files with 0 additions and 25195 deletions

View File

@@ -1,49 +0,0 @@
import py
from py.__.test.outcome import Skipped, Failed, Passed, Outcome
def setup_module(mod):
mod.tmp = py.test.ensuretemp(__name__)
def test_simple_docteststring():
p = tmp.join("test_simple_docteststring")
p.write(py.code.Source("""
>>> i = 0
>>> i + 1
1
"""))
testitem = py.test.collect.DoctestFile(p).join(p.basename)
res = testitem.run()
assert res is None
def test_simple_docteststring_failing():
p = tmp.join("test_simple_docteststring_failing")
p.write(py.code.Source("""
>>> i = 0
>>> i + 1
2
"""))
testitem = py.test.collect.DoctestFile(p).join(p.basename)
py.test.raises(Failed, "testitem.run()")
def test_collect_doctest_files_with_test_prefix():
o = py.test.ensuretemp("testdoctest")
checkfile = o.ensure("test_something.txt")
o.ensure("whatever.txt")
checkfile.write(py.code.Source("""
alskdjalsdk
>>> i = 5
>>> i-1
4
"""))
for x in (o, checkfile):
#print "checking that %s returns custom items" % (x,)
config = py.test.config._reparse([x])
col = config._getcollector(x)
items = list(col._tryiter(py.test.collect.Item))
assert len(items) == 1
assert isinstance(items[0].parent, py.test.collect.DoctestFile)