Skip to content

Instantly share code, notes, and snippets.

@jldupont
Created January 25, 2012 21:46
Show Gist options
  • Save jldupont/1678996 to your computer and use it in GitHub Desktop.
Save jldupont/1678996 to your computer and use it in GitHub Desktop.
nose class test
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