From f510281a09ce500dcb51bf5fd3cbca4d97a56cb2 Mon Sep 17 00:00:00 2001 From: Theron Luhn Date: Wed, 17 Feb 2021 14:08:42 -0800 Subject: Write tests. --- tests/test_decorator.py | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) (limited to 'tests/test_decorator.py') diff --git a/tests/test_decorator.py b/tests/test_decorator.py index b9a1f1e9d..a9a16ba93 100644 --- a/tests/test_decorator.py +++ b/tests/test_decorator.py @@ -1,3 +1,4 @@ +import inspect import unittest @@ -25,6 +26,28 @@ class TestReify(unittest.TestCase): result = decorator.__get__(None) self.assertEqual(result, decorator) + def test_copy_docstring(self): + def wrapped(inst): + """Test doc""" + return 'a' # pragma: no cover + + decorator = self._makeOne(wrapped) + assert decorator.__doc__ == 'Test doc' + + def test_not_function(self): + """ + Because reify'd methods act as attributes, it's important that they + aren't recognized as a function. Otherwise tools like Sphinx may + misbehave, like in https://github.com/Pylons/pyramid/issues/3655 + + """ + + def wrapped(inst): + return 'a' # pragma: no cover + + decorator = self._makeOne(wrapped) + assert not inspect.isfunction(inspect.unwrap(decorator)) + class Dummy: pass -- cgit v1.2.3