Imported Upstream version 1.1.2
[platform/upstream/python-nose.git] / functional_tests / support / ltfn / test_mod.py
1 from state import called
2
3 def setup():
4     called.append('test_mod.setup')
5
6 def test_mod():
7     called.append('test_mod.test_mod')
8
9 def teardown():
10     called.append('test_mod.teardown')