[Checkins] SVN: Sandbox/ulif/grokintrospector/src/grok/admin/introspector/tests/ Add a simple testsetup using grok.testing.

Uli Fouquet uli at gnufix.de
Tue Jun 17 09:33:47 EDT 2008


Log message for revision 87459:
  Add a simple testsetup using grok.testing.

Changed:
  A   Sandbox/ulif/grokintrospector/src/grok/admin/introspector/tests/
  A   Sandbox/ulif/grokintrospector/src/grok/admin/introspector/tests/__init__.py
  A   Sandbox/ulif/grokintrospector/src/grok/admin/introspector/tests/test_grokadmin.py

-=-
Added: Sandbox/ulif/grokintrospector/src/grok/admin/introspector/tests/__init__.py
===================================================================
--- Sandbox/ulif/grokintrospector/src/grok/admin/introspector/tests/__init__.py	                        (rev 0)
+++ Sandbox/ulif/grokintrospector/src/grok/admin/introspector/tests/__init__.py	2008-06-17 13:33:45 UTC (rev 87459)
@@ -0,0 +1,15 @@
+##############################################################################
+#
+# Copyright (c) 2008 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.
+#
+##############################################################################
+# a package
+

Added: Sandbox/ulif/grokintrospector/src/grok/admin/introspector/tests/test_grokadmin.py
===================================================================
--- Sandbox/ulif/grokintrospector/src/grok/admin/introspector/tests/test_grokadmin.py	                        (rev 0)
+++ Sandbox/ulif/grokintrospector/src/grok/admin/introspector/tests/test_grokadmin.py	2008-06-17 13:33:45 UTC (rev 87459)
@@ -0,0 +1,22 @@
+##############################################################################
+#
+# Copyright (c) 2008 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.
+#
+##############################################################################
+"""
+Test setup for grok.admin.introspector.
+"""
+from grok.testing import register_all_tests
+
+# This we say: include all testfiles in or below the
+# grok.admin.introspector package in the tests.
+#
+test_suite = register_all_tests('grok.admin.introspector')



More information about the Checkins mailing list