~ubuntu-branches/ubuntu/natty/zope.testing/natty

« back to all changes in this revision

Viewing changes to src/zope/testing/testrunner/testrunner-ex/sample2/sample22/sampletests_i.py

  • Committer: Bazaar Package Importer
  • Author(s): Brian Sutherland
  • Date: 2009-06-15 05:56:09 UTC
  • Revision ID: james.westby@ubuntu.com-20090615055609-71993ywo73mrvkud
Tags: upstream-3.7.4
ImportĀ upstreamĀ versionĀ 3.7.4

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
##############################################################################
 
2
#
 
3
# Copyright (c) 2003 Zope Corporation and Contributors.
 
4
# All Rights Reserved.
 
5
#
 
6
# This software is subject to the provisions of the Zope Public License,
 
7
# Version 2.0 (ZPL).  A copy of the ZPL should accompany this distribution.
 
8
# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
 
9
# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
 
10
# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
 
11
# FOR A PARTICULAR PURPOSE.
 
12
#
 
13
##############################################################################
 
14
 
 
15
import unittest
 
16
from zope.testing import doctest
 
17
 
 
18
class Test(unittest.TestCase):
 
19
 
 
20
    def test(self):
 
21
        self.assertEqual(1,0)
 
22
        
 
23
def test_suitex():
 
24
    return unittest.makeSuite(Test)