view sword2-libraries-pyinstaller-compatible/tests/functional/__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
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