summaryrefslogtreecommitdiff
path: root/src/zope/traversing/tests/test_skinf.py
blob: 6c5f8ef1f5997f997a443d8e6f85ff7bca9b34ff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
##############################################################################
#
# Copyright (c) 2006 Zope Corporation and Contributors.
# All Rights Reserved.
#
# This software is subject to the provisions of the Zope Public License,
# Version 2.1 (ZPL).  A copy of the ZPL should accompany this distribution.
# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
# FOR A PARTICULAR PURPOSE.
#
##############################################################################
"""Functional tests for skin traversing

$Id$
"""
import unittest
from zope.app.testing import functional
from zope.publisher.interfaces import NotFound
from zope.traversing.tests.layer import TraversingLayer

class TestSkin(functional.BrowserTestCase):

    def test_missing_skin(self):
        self.assertRaises(NotFound, self.publish, "/++skin++missingskin")

def test_suite():
    suite = unittest.TestSuite()
    TestSkin.layer = TraversingLayer
    suite.addTest(unittest.makeSuite(TestSkin))
    return suite


if __name__ == '__main__':
    unittest.main()