~barry/lazr.config/megamerge

« back to all changes in this revision

Viewing changes to src/lazr/config/tests.py

  • Committer: Gary Poster
  • Date: 2008-12-15 22:22:12 UTC
  • Revision ID: gary.poster@canonical.com-20081215222212-4we644wqwmv8lsa3
initial commit

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Copyright 2008 Canonical Ltd.  All rights reserved.
 
2
 
 
3
"""Test harness."""
 
4
 
 
5
__metaclass__ = type
 
6
__all__ = []
 
7
 
 
8
import doctest
 
9
import unittest
 
10
 
 
11
 
 
12
def test_suite():
 
13
    return unittest.TestSuite((
 
14
        doctest.DocFileSuite(
 
15
            'README.txt',
 
16
            optionflags=doctest.NORMALIZE_WHITESPACE|doctest.ELLIPSIS),
 
17
        ))