initial doctests support

This commit is contained in:
Ekaterina Tuzova
2012-10-16 14:33:26 +04:00
parent 0700051973
commit a898ec3db7
22 changed files with 634 additions and 3 deletions
@@ -0,0 +1,8 @@
class Test:
pass
def foo():
"""
>>> a = Tes<caret>
"""
@@ -0,0 +1,8 @@
class Test:
pass
def foo():
"""
>>> a = Test
"""
@@ -0,0 +1,5 @@
def foo():
"""
>>> fo<caret>
"""
@@ -0,0 +1,5 @@
def foo():
"""
>>> foo
"""