Imported Upstream version 1.1.2
[platform/upstream/python-nose.git] / unit_tests / support / bug101 / tests.py
1 def my_decor(func):
2     return lambda: func()
3
4 def test_decor():
5     pass
6
7 def test_decor1():
8     pass
9 test_decor1 = my_decor(test_decor1)