update test task

This commit is contained in:
Tomasz Dwojak 2017-11-19 14:52:25 +01:00
parent d5755b6965
commit 19c4e498ca
2 changed files with 8 additions and 3 deletions

6
.idea/vcs.xml Normal file
View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="VcsDirectoryMappings">
<mapping directory="$PROJECT_DIR$" vcs="Git" />
</component>
</project>

View File

@ -6,7 +6,7 @@ def suma(a, b):
"""
Napisz funkcję, która zwraca sumę elementów.
"""
pass
return a + b
def tests(f):
inputs = [(2, 3), (0, 0), (1, 1)]
@ -18,5 +18,4 @@ def tests(f):
break
return "TESTS PASSED"
if __name__ == "__main__":
print(tests(suma))
print(tests(suma))