diff --git a/tests/stunnel.pm b/tests/stunnel.pm
deleted file mode 100644
index 991fe1e1af6fa88e55fa33502073c7df45b4e4fc..0000000000000000000000000000000000000000
--- a/tests/stunnel.pm
+++ /dev/null
@@ -1,11 +0,0 @@
-sub checkstunnel {
-    my @paths=("/usr/sbin", "/usr/local/sbin", "/sbin", "/usr/bin",
-               "/usr/local/bin", split(":", $ENV{'PATH'}));
-    for(@paths) {
-        if( -x "$_/stunnel") {
-            return "$_/stunnel";
-        }
-    }
-}
-
-1;