Skip to content

Instantly share code, notes, and snippets.

@medwards
Created September 21, 2012 08:48
Show Gist options
  • Save medwards/3760435 to your computer and use it in GitHub Desktop.
Save medwards/3760435 to your computer and use it in GitHub Desktop.
nosetests skeleton
# ? 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