~landscape/zope3/ztk-1.1.3

« back to all changes in this revision

Viewing changes to src/zope/testing/testrunner/testrunner-ex-pp-lib/sample4/products/__init__.py

  • Committer: Thomas Hervé
  • Date: 2009-09-21 06:45:37 UTC
  • mfrom: (7.1.2 newer-zope-testing)
  • Revision ID: thomas@canonical.com-20090921064537-zcfyuv32hxj9eah0
Merge newer-zope-testing [a=sidnei] [f=429702] [r=therve,free.ekayanaka]

Update zope.testing to 3.8.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
##############################################################################
 
2
#
 
3
# Copyright (c) 2004 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.1 (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
"""Sample package that knits in extra directories.
 
15
 
 
16
$Id: __init__.py 39695 2005-10-28 20:01:54Z jim $
 
17
"""
 
18
 
 
19
import os
 
20
 
 
21
__path__.append(
 
22
    os.path.join(
 
23
        os.path.dirname( # testing
 
24
            os.path.dirname( # testrunner-ex-knit-lib
 
25
                os.path.dirname( # sample4
 
26
                    os.path.dirname(__file__) # products
 
27
                    )
 
28
                )
 
29
            )
 
30
        , "testrunner-ex-pp-products"
 
31
        )
 
32
    )
 
33