From e86301ca8f961c1f05b4e653a19a386bf66f0239 Mon Sep 17 00:00:00 2001 From: David Hendriks <davidhendriks93@gmail.com> Date: Fri, 17 Jan 2020 17:02:24 +0000 Subject: [PATCH] added function tests file where I play around with functions and their output --- tests/function_tests.py | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 tests/function_tests.py diff --git a/tests/function_tests.py b/tests/function_tests.py new file mode 100644 index 000000000..1e0c77c2f --- /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 -- GitLab