[Zope3-checkins] SVN: zope.testing/trunk/test.py Removed unused files.

Jim Fulton jim at zope.com
Sun May 6 09:56:38 EDT 2007


Log message for revision 75562:
  Removed unused files.
  

Changed:
  D   zope.testing/trunk/test.py

-=-
Deleted: zope.testing/trunk/test.py
===================================================================
--- zope.testing/trunk/test.py	2007-05-06 13:56:33 UTC (rev 75561)
+++ zope.testing/trunk/test.py	2007-05-06 13:56:37 UTC (rev 75562)
@@ -1,34 +0,0 @@
-#!/usr/bin/env python
-##############################################################################
-#
-# Copyright (c) 2004 Zope Corporation and Contributors.
-# All Rights Reserved.
-#
-# This software is subject to the provisions of the Zope Public License,
-# Version 2.0 (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.
-#
-##############################################################################
-"""Sample test script using zope.testing.testrunner
-
-see zope.testing testrunner.txt
-
-$Id$
-"""
-
-import os, sys
-
-src = os.path.join(os.path.split(sys.argv[0])[0], 'src')
-sys.path.insert(0, src) # put at beginning to avoid one in site_packages
-
-from zope.testing import testrunner
-
-defaults = [
-    '--path', src,
-    '--tests-pattern', '^tests$',
-    ]
-
-sys.exit(testrunner.run(defaults))



More information about the Zope3-Checkins mailing list