annotate sword2-libraries-pyinstaller-compatible/tests/http/__init__.py @ 22:d1752c7031e4 timeouts tip

Updated .hgignore to ignore sword2_logging.conf and anything in .cache
author Steve Welburn <stephen.welburn@eecs.qmul.ac.uk>
date Tue, 22 Jan 2013 14:43:42 +0000
parents 8b69bba225c9
children
rev   line source
marco@16 1 """
marco@16 2 Test framework - basic skeleton to simplify loading testsuite-wide data/config or even
marco@16 3 starting up a local SWORD2 server if later tests require this.
marco@16 4 """
marco@16 5 from unittest import TestCase
marco@16 6
marco@16 7 class TestController(TestCase):
marco@16 8
marco@16 9 def __init__(self, *args, **kwargs):
marco@16 10 # Load some config if required...
marco@16 11 TestCase.__init__(self, *args, **kwargs)
marco@16 12
marco@16 13 def setUp(self):
marco@16 14 pass
marco@16 15
marco@16 16 def tearDown(self):
marco@16 17 pass