summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorrsiddharth <rsiddharth@ninthfloor.org>2015-10-01 10:57:12 -0400
committerrsiddharth <rsiddharth@ninthfloor.org>2015-10-01 10:57:12 -0400
commit947194a0d21fefd9660110f903deeb385dd1b537 (patch)
tree56a1a58e48f40eba449c17c487ea6bc3683eb277 /tests
Initial commit
Diffstat (limited to 'tests')
-rw-r--r--tests/__init__.py0
-rw-r--r--tests/lpschedule_tests.py12
2 files changed, 12 insertions, 0 deletions
diff --git a/tests/__init__.py b/tests/__init__.py
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/tests/__init__.py
diff --git a/tests/lpschedule_tests.py b/tests/lpschedule_tests.py
new file mode 100644
index 0000000..3497361
--- /dev/null
+++ b/tests/lpschedule_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!"
+