aboutsummaryrefslogtreecommitdiffstats
path: root/tests/NAME_tests.py
blob: 9f83104c649bf5edd079b0f40a1a3551d9749a98 (plain)
1
2
3
4
5
6
7
8
9
10
11
from nose.tools import *
import NAME

def setup():
	print "SETUP!"

def teardown():
	print "TEAR DOWN!"

def test_basic():
	print "I RAN!"