summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Packman <gzlist@googlemail.com>2017-06-06 20:55:35 +0100
committerJeff Forcier <jeff@bitprophet.org>2021-11-28 20:24:17 -0500
commit3bed33ab150cb1a858899b17a116ca56cbcaacae (patch)
tree8cdc9e88f479c17a286a32694cd93a8b8dfbcc50
parentc81ffd0c41e76ea7c65c2f31c89371ca866aae1f (diff)
downloadparamiko-3bed33ab150cb1a858899b17a116ca56cbcaacae.tar.gz
Expose Python 2.6 compatible test skip decorator
-rw-r--r--tests/__init__.py40
1 files changed, 39 insertions, 1 deletions
diff --git a/tests/__init__.py b/tests/__init__.py
index be1d2daa..75350a5c 100644
--- a/tests/__init__.py
+++ b/tests/__init__.py
@@ -1 +1,39 @@
-# This file's just here so test modules can use explicit-relative imports.
+# Copyright (C) 2017 Martin Packman <gzlist@googlemail.com>
+#
+# This file is part of paramiko.
+#
+# Paramiko is free software; you can redistribute it and/or modify it under the
+# terms of the GNU Lesser General Public License as published by the Free
+# Software Foundation; either version 2.1 of the License, or (at your option)
+# any later version.
+#
+# Paramiko is distributed in the hope that it will be useful, but WITHOUT ANY
+# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
+# A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
+# details.
+#
+# You should have received a copy of the GNU Lesser General Public License
+# along with Paramiko; if not, write to the Free Software Foundation, Inc.,
+# 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
+
+"""Base classes and helpers for testing paramiko."""
+
+import unittest
+
+from paramiko.py3compat import (
+ builtins,
+ )
+
+
+skip = getattr(unittest, "skip", None)
+if skip is None:
+ def skip(reason):
+ """Stub skip decorator for Python 2.6 compatibility."""
+ return lambda func: None
+
+
+def skipUnlessBuiltin(name):
+ """Skip decorated test if builtin name does not exist."""
+ if getattr(builtins, name, None) is None:
+ return skip("No builtin " + repr(name))
+ return lambda func: func