diff options
author | Martin Packman <gzlist@googlemail.com> | 2017-06-06 20:55:35 +0100 |
---|---|---|
committer | Jeff Forcier <jeff@bitprophet.org> | 2021-11-28 20:24:17 -0500 |
commit | 3bed33ab150cb1a858899b17a116ca56cbcaacae (patch) | |
tree | 8cdc9e88f479c17a286a32694cd93a8b8dfbcc50 /tests | |
parent | c81ffd0c41e76ea7c65c2f31c89371ca866aae1f (diff) |
Expose Python 2.6 compatible test skip decorator
Diffstat (limited to 'tests')
-rw-r--r-- | tests/__init__.py | 40 |
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 |