~malept/ubuntu/lucid/python2.6/dev-dependency-fix

« back to all changes in this revision

Viewing changes to Lib/test/test_email_codecs.py

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2009-02-13 12:51:00 UTC
  • Revision ID: james.westby@ubuntu.com-20090213125100-uufgcb9yeqzujpqw
Tags: upstream-2.6.1
ImportĀ upstreamĀ versionĀ 2.6.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Copyright (C) 2002 Python Software Foundation
 
2
# email package unit tests for (optional) Asian codecs
 
3
 
 
4
# The specific tests now live in Lib/email/test
 
5
from email.test import test_email_codecs
 
6
from email.test import test_email_codecs_renamed
 
7
from test import test_support
 
8
 
 
9
def test_main():
 
10
    suite = test_email_codecs.suite()
 
11
    suite.addTest(test_email_codecs_renamed.suite())
 
12
    test_support.run_unittest(suite)
 
13
 
 
14
if __name__ == '__main__':
 
15
    test_main()