Commit a0dccca2 authored by Kevin Modzelewski's avatar Kevin Modzelewski

Add a decorator-module test

parent 4e7933aa
......@@ -34,3 +34,6 @@
[submodule "test/lib/numpy"]
path = test/lib/numpy
url = https://github.com/numpy/numpy
[submodule "test/lib/decorator"]
path = test/lib/decorator
url = https://github.com/micheles/decorator
import os, sys
sys.path.append(os.path.dirname(__file__) + "/../lib")
EXTRA_PATH = os.path.dirname(os.path.abspath(__file__)) + "/../lib/decorator/src"
sys.path.insert(0, EXTRA_PATH)
EXTRA_PATH = os.path.dirname(os.path.abspath(__file__)) + "/../lib/decorator"
sys.path.insert(0, EXTRA_PATH)
import decorator
import tests.test
import unittest
unittest.main(tests.test)
Subproject commit e13cf0704b7c28f1de1e71cb7c59b47a84daa9ca
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment