summaryrefslogtreecommitdiff
path: root/numpy/lib/tests/test_utils.py
diff options
context:
space:
mode:
Diffstat (limited to 'numpy/lib/tests/test_utils.py')
-rw-r--r--numpy/lib/tests/test_utils.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/numpy/lib/tests/test_utils.py b/numpy/lib/tests/test_utils.py
index 4062d35b5..21415d96b 100644
--- a/numpy/lib/tests/test_utils.py
+++ b/numpy/lib/tests/test_utils.py
@@ -10,6 +10,7 @@ if sys.version_info[0] >= 3:
else:
from StringIO import StringIO
+
def test_lookfor():
out = StringIO()
utils.lookfor('eigenvalue', module='numpy', output=out,
@@ -22,20 +23,25 @@ def test_lookfor():
def old_func(self, x):
return x
+
@deprecate(message="Rather use new_func2")
def old_func2(self, x):
return x
+
def old_func3(self, x):
return x
new_func3 = deprecate(old_func3, old_name="old_func3", new_name="new_func3")
+
def test_deprecate_decorator():
assert_('deprecated' in old_func.__doc__)
+
def test_deprecate_decorator_message():
assert_('Rather use new_func2' in old_func2.__doc__)
+
def test_deprecate_fn():
assert_('old_func3' in new_func3.__doc__)
assert_('new_func3' in new_func3.__doc__)