~ubuntu-branches/ubuntu/karmic/pypy/karmic

« back to all changes in this revision

Viewing changes to lib-python/2.4.1/test/test_email.py

  • Committer: Bazaar Package Importer
  • Author(s): Alexandre Fayolle
  • Date: 2007-04-13 09:33:09 UTC
  • Revision ID: james.westby@ubuntu.com-20070413093309-yoojh4jcoocu2krz
Tags: upstream-1.0.0
ImportĀ upstreamĀ versionĀ 1.0.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Copyright (C) 2001,2002 Python Software Foundation
 
2
# email package unit tests
 
3
 
 
4
import unittest
 
5
# The specific tests now live in Lib/email/test
 
6
from email.test.test_email import suite
 
7
from test.test_support import run_suite
 
8
 
 
9
def test_main():
 
10
    run_suite(suite())
 
11
 
 
12
if __name__ == '__main__':
 
13
    test_main()