diff --git a/tests/function_tests.py b/tests/function_tests.py new file mode 100644 index 0000000000000000000000000000000000000000..1e0c77c2fe510d7d0b3553efe01bcba1661b0a4b --- /dev/null +++ b/tests/function_tests.py @@ -0,0 +1,15 @@ +from binarycpython.utils.functions import ( + get_help_super, + get_help_all + ) + +############################# +# File containing some tests to function. These are not unit tests where output is compared. + + + + +## Help functionality +print(get_help_super(print_help=True, return_dict=False, fail_silently=False)) +print(get_help_all(print_help=True)) +# \ No newline at end of file