summaryrefslogtreecommitdiffstats
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
Initial commit
-rw-r--r--.gitignore2
-rw-r--r--lpschedule/__init__.py0
-rw-r--r--tests/__init__.py0
-rw-r--r--tests/lpschedule_tests.py12
4 files changed, 14 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..e645833
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,2 @@
+*~
+*.pyc \ No newline at end of file
diff --git a/lpschedule/__init__.py b/lpschedule/__init__.py
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/lpschedule/__init__.py
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!"
+