From 880df3b6f2a3490622fa910f65ef3c7d4d684634 Mon Sep 17 00:00:00 2001 From: Eduardo Elias Camponez Date: Sun, 5 May 2013 14:57:22 -0300 Subject: [PATCH] Test: Adiciona teste para municipios --- test/test_municipios.py | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 test/test_municipios.py diff --git a/test/test_municipios.py b/test/test_municipios.py new file mode 100644 index 0000000..b98961c --- /dev/null +++ b/test/test_municipios.py @@ -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 -- 2.20.1