From 5b90d5c38671fb0751d39eb6f8d376bbfdc810fd Mon Sep 17 00:00:00 2001 From: Benji York Date: Wed, 27 Jul 2005 12:44:10 +0000 Subject: [PATCH] remove code to deal with dependancies not being present, dependencies will be added before merged back to the trunk --- testbrowser/__init__.py | 1 + testbrowser/ftests.py | 26 ++++++++++++++++++++++++++ 2 files changed, 27 insertions(+) create mode 100644 testbrowser/__init__.py create mode 100644 testbrowser/ftests.py diff --git a/testbrowser/__init__.py b/testbrowser/__init__.py new file mode 100644 index 0000000..5570c09 --- /dev/null +++ b/testbrowser/__init__.py @@ -0,0 +1 @@ +from testing import Browser diff --git a/testbrowser/ftests.py b/testbrowser/ftests.py new file mode 100644 index 0000000..fc2bf3c --- /dev/null +++ b/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')