Add lots of things(including tests)

This commit is contained in:
Rohit Tanwar
2018-02-16 16:09:18 +05:30
parent c7810b00bb
commit fb9176aa91
51 changed files with 308 additions and 7 deletions

View File

@ -0,0 +1,6 @@
import types,functools
from tape import test
from is_upper_case import is_upper_case
def is_upper_case_test(t):
t.true(isinstance(is_upper_case, (types.BuiltinFunctionType, types.FunctionType, functools.partial)),'is_upper_case is a function')
test('Testing is_upper_case',is_upper_case_test)