15 lines
199 B
Python
15 lines
199 B
Python
|
|
from os.path import dirname, join
|
|
import sys
|
|
sys.path.append(join(dirname(dirname(__file__)), "src"))
|
|
|
|
from okipy import test
|
|
|
|
|
|
def add(a, b):
|
|
return a + b
|
|
|
|
|
|
@test()
|
|
def it_works(ctx):
|
|
pass
|