Test: Adiciona test_bens
authorEduardo Elias Camponez <camponez@gmail.com>
Tue, 7 May 2013 00:04:05 +0000 (21:04 -0300)
committerEduardo Elias Camponez <camponez@gmail.com>
Sun, 7 Jul 2013 17:02:55 +0000 (14:02 -0300)
test/test_bens.py [new file with mode: 0644]

diff --git a/test/test_bens.py b/test/test_bens.py
new file mode 100644 (file)
index 0000000..e049675
--- /dev/null
@@ -0,0 +1,15 @@
+# -*- 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')
+
+CONFIG = os.path.dirname(os.path.abspath(__file__))+'conf.py'
+
+if __name__ == '__main__':
+    unittest.main()
+
+# vim:tabstop=4:expandtab:smartindent:fenc=utf8
+