[Checkins] SVN: z3c.recipe.dev/trunk/ fix tests

Roger Ineichen roger at projekt01.ch
Wed Jan 21 22:27:27 EST 2009


Log message for revision 94917:
  fix tests

Changed:
  U   z3c.recipe.dev/trunk/CHANGES.txt
  U   z3c.recipe.dev/trunk/src/z3c/recipe/dev/README.txt
  U   z3c.recipe.dev/trunk/src/z3c/recipe/dev/tests.py

-=-
Modified: z3c.recipe.dev/trunk/CHANGES.txt
===================================================================
--- z3c.recipe.dev/trunk/CHANGES.txt	2009-01-22 02:02:55 UTC (rev 94916)
+++ z3c.recipe.dev/trunk/CHANGES.txt	2009-01-22 03:27:27 UTC (rev 94917)
@@ -5,7 +5,7 @@
 0.5.4 (unreleased)
 ------------------
 
-- ...
+- fix tests
 
 0.5.3 (2008-04-07)
 ------------------

Modified: z3c.recipe.dev/trunk/src/z3c/recipe/dev/README.txt
===================================================================
--- z3c.recipe.dev/trunk/src/z3c/recipe/dev/README.txt	2009-01-22 02:02:55 UTC (rev 94916)
+++ z3c.recipe.dev/trunk/src/z3c/recipe/dev/README.txt	2009-01-22 03:27:27 UTC (rev 94917)
@@ -2,8 +2,8 @@
 Z3 development recipe
 =====================
 
-z3c.recipe.start
-----------------
+z3c.recipe.dev app
+------------------
 
 This Zope 3 recipes allows you to define Zope applications.
 
@@ -172,19 +172,20 @@
 The myapp-scrip.py contains the start code for our zope setup:
 
   >>> cat('bin', 'myapp-script.py')
-  #!C:\Python24\python.exe
+  #!"C:\Python24\python.exe"
   <BLANKLINE>
   import sys
   sys.path[0:0] = [
     '/sample-buildout/demo2',
     '/z3c.recipe.dev/trunk/src',
-    '/sample-buildout/eggs/zc.recipe.filestorage-1.0a5-py2.4.egg',
-    '/sample-buildout/eggs/zope.testing-3.5.1-py2.4.egg',
-    '/sample-buildout/eggs/zc.recipe.egg-1.0.0b6-py2.4.egg',
-    '/sample-buildout/eggs/zc.buildout-1.0.0b30-py2.4.egg',
-    '/sample-buildout/eggs/setuptools-0.6c7-py2.4.egg',
-    '/sample-buildout/eggs/zconfig-2.5-py2.4.egg',
+    '/sample-buildout/eggs/zc.recipe.filestorage-1.0.1-py2.4.egg',
+    '/sample-buildout/eggs/zope.testing-3.7.1-py2.4.egg',
+    '/sample-buildout/eggs/zc.recipe.egg-1.1.0-py2.4.egg',
+    '/sample-buildout/eggs/zc.buildout-1.1.1-py2.4.egg',
+    '/site-packages',
+    '/sample-buildout/eggs/zconfig-2.6.1-py2.4.egg',
     '/sample-buildout/demo1',
+    '/sample-buildout/eggs/zope.interface-3.5.0-py2.4-win32.egg',
     ]
   <BLANKLINE>
   import os
@@ -207,8 +208,8 @@
   -  zope.conf
 
 
-`z3c.recipe.script`
--------------------
+z3c.recipe.dev script
+---------------------
 
 The script recipe allows us to point to scripts which the recipe will install
 a execute script hook for us. You can use this if you need to run a python

Modified: z3c.recipe.dev/trunk/src/z3c/recipe/dev/tests.py
===================================================================
--- z3c.recipe.dev/trunk/src/z3c/recipe/dev/tests.py	2009-01-22 02:02:55 UTC (rev 94916)
+++ z3c.recipe.dev/trunk/src/z3c/recipe/dev/tests.py	2009-01-22 03:27:27 UTC (rev 94917)
@@ -43,6 +43,7 @@
     zc.buildout.testing.buildoutSetUp(test)
     zc.buildout.testing.install_develop('z3c.recipe.dev', test)
     zc.buildout.testing.install('zope.testing', test)
+    zc.buildout.testing.install('zope.interface', test)
     zc.buildout.testing.install('zc.recipe.egg', test)
     zc.buildout.testing.install('ZConfig', test)
     zc.buildout.testing.install('zc.recipe.filestorage', test)
@@ -57,6 +58,8 @@
     ), ''),
     (re.compile("""['"][^\n"']+z3c.recipe.dev[^\n"']*['"],"""),
      "'/z3c.recipe.dev',"),
+    (re.compile("""['"][^\n"']+site-packages[^\n"']*['"],"""),
+     "'/site-packages',"),
     (re.compile('#![^\n]+\n'), ''),
     (re.compile('-\S+-py\d[.]\d(-\S+)?.egg'),
      '-pyN.N.egg',



More information about the Checkins mailing list