Commit 5986efd2 authored by Stefan Behnel's avatar Stefan Behnel

fix test after changing autotestdict default setup

parent 86b46c1b
...@@ -5,6 +5,9 @@ cdef class Spam: ...@@ -5,6 +5,9 @@ cdef class Spam:
def __get__(self): def __get__(self):
""" """
This is the docstring for Spam.eggs.__get__ This is the docstring for Spam.eggs.__get__
>>> True
True
""" """
return 42 return 42
...@@ -16,9 +19,9 @@ def tomato(): ...@@ -16,9 +19,9 @@ def tomato():
>>> lines = __test__.keys() >>> lines = __test__.keys()
>>> len(lines) >>> len(lines)
3 3
>>> 'Spam.eggs.__get__ (line 5)' in lines >>> 'Spam.eggs.__get__ (line 5)' in lines or lines
True True
>>> 'tomato (line 11)' in lines >>> 'tomato (line 14)' in lines or lines
True True
""" """
cdef Spam spam cdef Spam spam
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment