~sidnei/zope3/ztk-1.1

« back to all changes in this revision

Viewing changes to src/ZODB/tests/testSerialize.py

  • Committer: Sidnei da Silva
  • Date: 2011-04-08 22:10:13 UTC
  • Revision ID: sidnei.da.silva@canonical.com-20110408221013-lrjto3qdiupekwdc
- Upgrade to ztk 1.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
##############################################################################
2
2
#
3
 
# Copyright (c) 2004 Zope Corporation and Contributors.
 
3
# Copyright (c) 2004 Zope Foundation and Contributors.
4
4
# All Rights Reserved.
5
5
#
6
6
# This software is subject to the provisions of the Zope Public License,
11
11
# FOR A PARTICULAR PURPOSE.
12
12
#
13
13
##############################################################################
14
 
"""Tests of the serializer."""
15
 
 
 
14
import doctest
16
15
import cPickle
17
16
import cStringIO as StringIO
18
17
import sys
121
120
 
122
121
 
123
122
def test_suite():
124
 
    from zope.testing import doctest
125
123
    suite = unittest.makeSuite(SerializerTestCase)
126
124
    suite.addTest(doctest.DocTestSuite("ZODB.serialize"))
127
125
    return suite