Mercurial > hg > sworduploader
view sword2-libraries-pyinstaller-compatible/tests/functional/__init__.py @ 17:509a22aa26c6
explanation to build executables
author | Marco Fabiani <marco.fabiani@eecs.qmul.ac.uk> |
---|---|
date | Tue, 29 May 2012 12:44:46 +0100 |
parents | 8b69bba225c9 |
children |
line wrap: on
line source
""" Test framework - basic skeleton to simplify loading testsuite-wide data/config or even starting up a local SWORD2 server if later tests require this. """ from unittest import TestCase class TestController(TestCase): def __init__(self, *args, **kwargs): # Load some config if required... TestCase.__init__(self, *args, **kwargs) def setUp(self): pass def tearDown(self): pass