summaryrefslogtreecommitdiff
path: root/decorator/test.py
diff options
context:
space:
mode:
Diffstat (limited to 'decorator/test.py')
-rw-r--r--decorator/test.py24
1 files changed, 24 insertions, 0 deletions
diff --git a/decorator/test.py b/decorator/test.py
new file mode 100644
index 0000000..b21fe4d
--- /dev/null
+++ b/decorator/test.py
@@ -0,0 +1,24 @@
+"""
+Some simple tests executable with nose or py.test
+"""
+
+import os
+from decorator import decorator
+
+@decorator
+def identity(f, *a, **k):
+ "do nothing decorator"
+ return f(*a, **k)
+
+@identity
+def f1():
+ "f1"
+
+def test0():
+ assert os.path.basename(identity.func_globals['__file__']) == 'test.py'
+ print identity.__doc__
+
+def test1():
+ assert os.path.basename(f1.func_globals['__file__']) == 'test.py'
+ print f1.__doc__
+