/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

  1. def my_decor(func):
  2. return lambda: func()
  3. def test_decor():
  4. pass
  5. def test_decor1():
  6. pass
  7. test_decor1 = my_decor(test_decor1)