initial commit

This commit is contained in:
simojenki
2019-09-11 20:43:59 +10:00
parent 43e697e8d8
commit 8332106bbf
6 changed files with 22 additions and 0 deletions

6
tests/context.py Normal file
View File

@@ -0,0 +1,6 @@
import os
import sys
sys.path.insert(0, os.path.abspath(os.path.join(os.path.dirname(__file__), '..')))
import sample

10
tests/test_one.py Normal file
View File

@@ -0,0 +1,10 @@
#from context import bonob
# content of test_sample.py
def f(x):
return x + 1
def test_answer():
assert f(4) == 5