/unit_tests/support/bug101/tests.py
https://bitbucket.org/jpellerin/nose/ · Python · 9 lines · 7 code · 2 blank · 0 comment · 0 complexity · fc747353d21334dff30b1a1204267fe1 MD5 · raw file
- def my_decor(func):
- return lambda: func()
- def test_decor():
- pass
- def test_decor1():
- pass
- test_decor1 = my_decor(test_decor1)