summaryrefslogtreecommitdiff
path: root/test.py
diff options
context:
space:
mode:
authorMichele Simionato <michele.simionato@gmail.com>2015-07-20 06:41:43 +0200
committerMichele Simionato <michele.simionato@gmail.com>2015-07-20 06:41:43 +0200
commitcc752587247ffe103bacfa86e84b5797959cd845 (patch)
tree53c6d3bae62eb88861826c77ae741534549895ec /test.py
parenta4e7a82790a134ca44746de88bdc0354e90c442c (diff)
downloadpython-decorator-git-cc752587247ffe103bacfa86e84b5797959cd845.tar.gz
More work on the documentation
Diffstat (limited to 'test.py')
-rw-r--r--test.py6
1 files changed, 0 insertions, 6 deletions
diff --git a/test.py b/test.py
index 101f8dc..48bb0a8 100644
--- a/test.py
+++ b/test.py
@@ -35,12 +35,6 @@ def test1():
this = getfname(f1)
assert this == 'test.py', this
-
-def test_long_running():
- f1 = documentation.long_running(1)
- f2 = documentation.long_running(2)
- assert f1.result() + f2.result() == 3
-
if __name__ == '__main__':
t0 = time.time()
for name, test in list(globals().items()):