Commit 7e9a4517 authored by Stefan Behnel's avatar Stefan Behnel

extended test case to make sure we didn't break some things

parent df6514ff
......@@ -7,6 +7,8 @@ True
True
>>> arithm() == 9*2+3*8/6-10
True
>>> lists() == [1,2,3] + [4,5,6]
True
"""
def add():
......@@ -20,3 +22,6 @@ def mul():
def arithm():
return 9*2+3*8/6-10
def lists():
return [1,2,3] + [4,5,6]
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