#!/usr/bin/python
"""
$Id: validator.py,v 1.1 2006/05/02 07:44:17 dom Exp $

License
-------
Copyright (c) 2006 World Wide Web Consortium, (Massachusetts
Institute of Technology, European Research Consortium for Informatics
and Mathematics, Keio University). All Rights Reserved. This work is
distributed under the W3C Software License [1] in the hope that it
will be useful, but WITHOUT ANY WARRANTY; without even the implied
warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

[1] http://www.w3.org/Consortium/Legal/copyright-software

"""


class Validator:
    pass

import unittest

class Tests(unittest.TestCase):
    def testValidator(self):
        noop


def _test():
    import doctest, validator.validator
    doctest.testmod(validator.validator)
    unittest.main()

if __name__ == '__main__':
    _test()


