Mercurial > hg > sworduploader
view sword2-libraries-pyinstaller-compatible/tests/http/__init__.py @ 20:8b9e7f2f80e2 timeouts
Updated to:
(i) allow timeout and password as parameters
(ii) use connection/collection/item/file objects
author | Steve Welburn <stephen.welburn@eecs.qmul.ac.uk> |
---|---|
date | Tue, 22 Jan 2013 13:41:24 +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