Skip to content

Commit

Permalink
remove code to deal with dependancies not being present, dependencies…
Browse files Browse the repository at this point in the history
… will be

added before merged back to the trunk
  • Loading branch information
benji-york committed Jul 27, 2005
0 parents commit 5b90d5c
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
1 change: 1 addition & 0 deletions testbrowser/__init__.py
@@ -0,0 +1 @@
from testing import Browser
26 changes: 26 additions & 0 deletions testbrowser/ftests.py
@@ -0,0 +1,26 @@
##############################################################################
#
# Copyright (c) 2005 Zope Corporation. All Rights Reserved.
#
# This software is subject to the provisions of the Zope Visible Source
# License, Version 1.0 (ZVSL). A copy of the ZVSL 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
#
##############################################################################
"""Test Browser Tests
$Id$
"""
import unittest
from zope.app.testing.functional import FunctionalDocFileSuite

def test_suite():
return FunctionalDocFileSuite('README.txt')

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

0 comments on commit 5b90d5c

Please sign in to comment.