File: __init__.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 (10 lines) | stat: -rw-r--r-- 238 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
print "*** test_pak imported"
state = []

def setup():
    # print "SETUP CALLED", state, id(state)
    state.append('test_pak.setup')

def teardown():
    # print "TEARDOWN CALLED", state, id(state)
    state.append('test_pak.teardown')