Created
January 25, 2012 21:46
-
-
Save jldupont/1678996 to your computer and use it in GitHub Desktop.
nose class test
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Test(): | |
@classmethod | |
def setup_class(self): | |
"""setup""" | |
@classmethod | |
def teardown_class(self): | |
"""teardown""" | |
def test_always_true(self): | |
assert True | |
def test_always_false(self): | |
assert False |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment