Created
September 21, 2012 08:48
-
-
Save medwards/3760435 to your computer and use it in GitHub Desktop.
nosetests skeleton
This file contains hidden or 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
# ? from ourapp.app import app | |
import unittest | |
from nose.tools import assert_equals | |
class BlueprintTestCase(unittest.TestCase): | |
def setUp(self): | |
pass | |
def tearDown(self): | |
pass | |
def test_ping(self): | |
assert_equals(1, 2) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment