6 lines
226 B
Python
6 lines
226 B
Python
import types,functools
|
|
from tape import test
|
|
from zip import zip
|
|
def zip_test(t):
|
|
t.true(isinstance(zip, (types.BuiltinFunctionType, types.FunctionType, functools.partial)),'zip is a function')
|
|
test('Testing zip',zip_test) |