Skip to content

Commit dfb4f90

Browse files
author
Richard Jones
committed
had commented out some tests
1 parent 87cdc10 commit dfb4f90

File tree

1 file changed

+16
-7
lines changed

1 file changed

+16
-7
lines changed

test/__init__.py

Lines changed: 16 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
# BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
1616
# SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
1717
#
18-
# $Id: __init__.py,v 1.11 2002-01-14 02:20:15 richard Exp $
18+
# $Id: __init__.py,v 1.12 2002-01-14 06:53:28 richard Exp $
1919

2020
import unittest
2121
import os, tempfile
@@ -26,21 +26,30 @@
2626

2727
def go():
2828
suite = unittest.TestSuite((
29-
# test_dates.suite(),
30-
# test_schema.suite(),
29+
test_dates.suite(),
30+
test_schema.suite(),
3131
test_db.suite(),
32-
# test_init.suite(),
33-
# test_multipart.suite(),
34-
# test_mailsplit.suite(),
32+
test_init.suite(),
33+
test_multipart.suite(),
34+
test_mailsplit.suite(),
3535
test_mailgw.suite(),
36-
# test_token.suite(),
36+
test_token.suite(),
3737
))
3838
runner = unittest.TextTestRunner()
3939
result = runner.run(suite)
4040
return result.wasSuccessful()
4141

4242
#
4343
# $Log: not supported by cvs2svn $
44+
# Revision 1.11 2002/01/14 02:20:15 richard
45+
# . changed all config accesses so they access either the instance or the
46+
# config attriubute on the db. This means that all config is obtained from
47+
# instance_config instead of the mish-mash of classes. This will make
48+
# switching to a ConfigParser setup easier too, I hope.
49+
#
50+
# At a minimum, this makes migration a _little_ easier (a lot easier in the
51+
# 0.5.0 switch, I hope!)
52+
#
4453
# Revision 1.10 2002/01/05 02:09:46 richard
4554
# make setup abort if tests fail
4655
#

0 commit comments

Comments
 (0)