Add lots of things(including tests)
This commit is contained in:
6
test/zip/zip.test.py
Normal file
6
test/zip/zip.test.py
Normal file
@ -0,0 +1,6 @@
|
||||
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)
|
||||
Reference in New Issue
Block a user