From 050c0f28dcb2a3e57a27d26fbe6c9a984a6f6877 Mon Sep 17 00:00:00 2001 From: "Jason R. Coombs" Date: Sun, 4 Dec 2022 20:59:37 -0500 Subject: [PATCH] Remove test_nothing --- jaraco/fabric/monkey.py | 2 ++ test_nothing.py | 10 ---------- 2 files changed, 2 insertions(+), 10 deletions(-) delete mode 100644 test_nothing.py diff --git a/jaraco/fabric/monkey.py b/jaraco/fabric/monkey.py index 65a3d24..f906af1 100644 --- a/jaraco/fabric/monkey.py +++ b/jaraco/fabric/monkey.py @@ -14,3 +14,5 @@ def wrapper(c, *args, **kwargs): if __import__('os').path.exists(key) ] return func(c, *args, **kwargs) + + return wrapper diff --git a/test_nothing.py b/test_nothing.py deleted file mode 100644 index 8591e27..0000000 --- a/test_nothing.py +++ /dev/null @@ -1,10 +0,0 @@ -""" -This package has no tests, but for the automatic deployment -to occur, tests need to run and pass. If you can think of a -useful test to add to the package, please do so, and then this -module can be removed. -""" - - -def test_null(): - "A trivial test to enable the test runner to pass"