0

wrote some unit tests!

This commit is contained in:
Andrew Brown
2011-11-16 20:39:01 -05:00
parent bd08dbc955
commit 95b4ec5922
3 changed files with 197 additions and 0 deletions

14
test/test_all.py Normal file
View File

@@ -0,0 +1,14 @@
#!/usr/bin/env python
import unittest
# For convenience
import sys,os
sys.path.insert(0, os.getcwd())
sys.path.insert(0, os.path.join(os.getcwd(), os.pardir))
# Import unit test cases or suites here
from test_tileobj import TileTest
from test_dirtytiles import DirtyTilesTest
if __name__ == "__main__":
unittest.main()