add cpntributor_database

This commit is contained in:
Rohit Tanwar
2018-02-20 14:39:09 +05:30
parent d04f0260fc
commit 9e26f0ba73
139 changed files with 12881 additions and 12857 deletions

View File

@ -1,6 +1,6 @@
import types,functools
from pytape import test
from byte_size import byte_size
def byte_size_test(t):
t.true(isinstance(byte_size, (types.BuiltinFunctionType, types.FunctionType, functools.partial)),'byte_size is a function')
import types,functools
from pytape import test
from byte_size import byte_size
def byte_size_test(t):
t.true(isinstance(byte_size, (types.BuiltinFunctionType, types.FunctionType, functools.partial)),'byte_size is a function')
test('Testing byte_size',byte_size_test)