8
by Canonical.com Patch Queue Manager
Added Soyuz app server start-up and config files |
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() |