Mercurial > hg > sworduploader
view sword2-libraries-pyinstaller-compatible/tests/functional/__init__.py @ 16:8b69bba225c9
Added pyinstaller compatible sword2 python libraries
author | Marco Fabiani <marco.fabiani@eecs.qmul.ac.uk> |
---|---|
date | Tue, 29 May 2012 12:42:49 +0100 |
parents | |
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