summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
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!"
+