#!/usr/bin/env python

# A template for test suites; copy this file, remove this line, and edit.

#
# Test script for XXX.
#

__revision__ = "$Id: test_template,v 1.2 2001/06/08 00:34:24 akuchlin Exp $"

from quixote.test.unittest import TestScenario, parse_args, run_scenarios

tested_modules = [ "mymodule" ]

class XXXTest (TestScenario):

    def setup (self):
        self. =
        self. =

    def shutdown (self):
        del self.
        del self.


    def check_ (self):
        ""
        pass

# class XXXTest


if __name__ == "__main__":
    (scenarios, options) = parse_args()
    run_scenarios (scenarios, options)
