Initial commit

This commit is contained in:
Eric S. Bullington
2012-03-06 12:57:28 -05:00
commit 14f006ee5e
58 changed files with 12985 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
import os
import unittest
import tempfile
from app import app
class AppTestCase(unittest.TestCase):
def setUp(self):
self.app = app.test_client()
def tearDown(self):
pass
if __name__ == '__main__':
unittest.main()