diff options
Diffstat (limited to 'tests/NAME_tests.py')
-rw-r--r-- | tests/NAME_tests.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/NAME_tests.py b/tests/NAME_tests.py index 9f83104c..e95004bc 100644 --- a/tests/NAME_tests.py +++ b/tests/NAME_tests.py @@ -1,11 +1,11 @@ -from nose.tools import * -import NAME def setup(): - print "SETUP!" + print "SETUP!" + def teardown(): - print "TEAR DOWN!" + print "TEAR DOWN!" + def test_basic(): - print "I RAN!" + print "I RAN!" |