~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to test.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2004-06-23 09:15:21 UTC
  • mfrom: (unknown (missing))
  • Revision ID: Arch-1:rocketfuel@canonical.com%soyuz--devel--0--patch-5
merge latest changes
Patches applied:

 * robert.collins@canonical.com/soyuz--devel--0--patch-3
   add importd and buildbot module links

 * robert.collins@canonical.com/soyuz--devel--0--patch-4
   catch up with upstream

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()