Mercurial > hg > sworduploader
view sword2-libraries-pyinstaller-compatible/tests/functional/__init__.py @ 21:3fb1ac952fb2 timeouts
Default timeout set to return a list object rather than a float
(same format as when timeout is supplide by user)
author | Steve Welburn <stephen.welburn@eecs.qmul.ac.uk> |
---|---|
date | Tue, 22 Jan 2013 14:20:02 +0000 |
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