~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to test.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2004-07-12 17:46:22 UTC
  • mfrom: (unknown (missing))
  • Revision ID: Arch-1:rocketfuel@canonical.com%soyuz--devel--0--patch-26
Updated standard python module template
Patches applied:

 * steve.alexander@canonical.com/soyuz--devel--0--patch-13
   merged from rocketfuel

 * steve.alexander@canonical.com/soyuz--devel--0--patch-14
   Changed stanard python module template to use the full string 'Copyright'

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/env python2.3
 
2
##############################################################################
 
3
#
 
4
# Copyright (c) 2004 Zope Corporation and Contributors.
 
5
# All Rights Reserved.
 
6
#
 
7
# This software is subject to the provisions of the Zope Public License,
 
8
# Version 2.1 (ZPL).  A copy of the ZPL should accompany this distribution.
 
9
# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
 
10
# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
 
11
# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
 
12
# FOR A PARTICULAR PURPOSE.
 
13
#
 
14
##############################################################################
 
15
# arch-tag: e7f23c0d-41de-4ddf-9bfa-72544de70f92
 
16
"""Test script
 
17
 
 
18
$Id: test.py 25177 2004-06-02 13:17:31Z jim $
 
19
"""
 
20
import sys, os
 
21
 
 
22
here = os.path.dirname(os.path.realpath(__file__))
 
23
sys.path.append(os.path.join(here, 'src'))
 
24
 
 
25
import zope.app.tests.test
 
26
 
 
27
if __name__ == '__main__':
 
28
    zope.app.tests.test.process_args()