6 lines
233 B
Python
6 lines
233 B
Python
import types,functools
|
|
from pytape import test
|
|
from gcd import gcd
|
|
def gcd_test(t):
|
|
t.true(isinstance(gcd, (types.BuiltinFunctionType, types.FunctionType, functools.partial)),'gcd is a function')
|
|
test('Testing gcd',gcd_test) |