Test: Adiciona teste para municipios
authorEduardo Elias Camponez <camponez@gmail.com>
Sun, 5 May 2013 17:57:22 +0000 (14:57 -0300)
committerEduardo Elias Camponez <camponez@gmail.com>
Sun, 7 Jul 2013 17:02:55 +0000 (14:02 -0300)
test/test_municipios.py [new file with mode: 0644]

diff --git a/test/test_municipios.py b/test/test_municipios.py
new file mode 100644 (file)
index 0000000..b98961c
--- /dev/null
@@ -0,0 +1,12 @@
+# -*- mode: python; encoding: utf-8; -*-
+import unittest
+import sys
+import os
+
+myPath = os.path.dirname(os.path.abspath(__file__))
+sys.path.insert(0, myPath + '/../src')
+
+if __name__ == '__main__':
+    unittest.main()
+
+# vim:tabstop=4:expandtab:smartindent:fenc=utf8