diff --git a/func.py b/func.py index ceba274..3c814e9 100644 --- a/func.py +++ b/func.py @@ -2,8 +2,11 @@ def func(): """"Test function to check if coverage is configured properly.""" return True + def untested(): return "This is untested code" -def blah_test_this(): - return "blue blue" + +def more_untested(): + return "hello world" +