File: tests.py

package info (click to toggle)
nose 1.3.7-9
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 2,900 kB
  • sloc: python: 15,733; makefile: 99; xml: 42; sh: 2
file content (9 lines) | stat: -rw-r--r-- 139 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
def my_decor(func):
    return lambda: func()

def test_decor():
    pass

def test_decor1():
    pass
test_decor1 = my_decor(test_decor1)