summaryrefslogtreecommitdiffstats
path: root/tests/generator_tests.py
diff options
context:
space:
mode:
authorrsiddharth <rsiddharth@ninthfloor.org>2015-10-01 11:05:12 -0400
committerrsiddharth <rsiddharth@ninthfloor.org>2015-10-01 11:05:12 -0400
commit1b0cb96acbaa41444c64ec5c73fbfee928831f57 (patch)
tree70e45a1bb3e5899ffe594b0db53d41c848bb01d3 /tests/generator_tests.py
parent0eb030201b54cef6162824066a617fe5385f3b2a (diff)
renamed: tests/lpschedule_tests.py -> tests/generator_tests.py
Diffstat (limited to 'tests/generator_tests.py')
-rw-r--r--tests/generator_tests.py12
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/generator_tests.py b/tests/generator_tests.py
new file mode 100644
index 0000000..3497361
--- /dev/null
+++ b/tests/generator_tests.py
@@ -0,0 +1,12 @@
+from nose.tools import *
+import lpschedule
+
+def setup():
+ print "SETUP!"
+
+def teardown():
+ print "TEAR DOWN!"
+
+def test_basic():
+ print "I RAN!"
+