#!/usr/bin/env python #FIXME: Try nose [http://somethingaboutorange.com/mrl/projects/nose/] for running unittest's. # # Nose is a library to help create tests and it integrates with # unittest or doctest. All you need to do is run nosetests and # it'll find all your unittests for you. # # > nosetests # finds all tests in all subdirectories # > nosetests tests/ # find all tests in the tests/ directory # #FIXME: "from x import *" requires unittest interfaces to be defined in __init__.py!!! # from MakeItSo import * #FIXME: Environment/Model tests dont get run unless you: from MakeItSo.Environments import * from MakeItSo.Models import * import unittest if __name__ == "__main__": unittest.main()