[Checkins] SVN: z3c.recipe.mkdir/trunk/ Updated tests to run with `zc.buildout` 1.5, thus requiring at least this version.

Michael Howitz mh at gocept.com
Mon Sep 6 02:18:16 EDT 2010


Log message for revision 116204:
  Updated tests to run with `zc.buildout` 1.5, thus requiring at least this version.
  

Changed:
  U   z3c.recipe.mkdir/trunk/CHANGES.txt
  U   z3c.recipe.mkdir/trunk/setup.py
  U   z3c.recipe.mkdir/trunk/z3c/recipe/mkdir/README.txt

-=-
Modified: z3c.recipe.mkdir/trunk/CHANGES.txt
===================================================================
--- z3c.recipe.mkdir/trunk/CHANGES.txt	2010-09-06 06:16:47 UTC (rev 116203)
+++ z3c.recipe.mkdir/trunk/CHANGES.txt	2010-09-06 06:18:16 UTC (rev 116204)
@@ -4,6 +4,10 @@
 0.4 (unreleased)
 ================
 
+* Updated tests to run with `zc.buildout` 1.5, thus requiring at least this
+  version.
+
+
 0.3.1 (2009-08-21)
 ==================
 

Modified: z3c.recipe.mkdir/trunk/setup.py
===================================================================
--- z3c.recipe.mkdir/trunk/setup.py	2010-09-06 06:16:47 UTC (rev 116203)
+++ z3c.recipe.mkdir/trunk/setup.py	2010-09-06 06:18:16 UTC (rev 116204)
@@ -28,7 +28,7 @@
       zip_safe=False,
       install_requires=[
           'setuptools',
-          'zc.buildout',
+          'zc.buildout >= 1.5',
       ],
       extras_require=dict(
         test = [

Modified: z3c.recipe.mkdir/trunk/z3c/recipe/mkdir/README.txt
===================================================================
--- z3c.recipe.mkdir/trunk/z3c/recipe/mkdir/README.txt	2010-09-06 06:16:47 UTC (rev 116203)
+++ z3c.recipe.mkdir/trunk/z3c/recipe/mkdir/README.txt	2010-09-06 06:18:16 UTC (rev 116204)
@@ -11,7 +11,7 @@
 
 * ``paths``
     Contains the path(s) of directories created in normalized,
-    absolute form. I.e.:: 
+    absolute form. I.e.::
 
       mydir/../foo/bar
 
@@ -54,8 +54,10 @@
 The directory was indeed created in the ``parts`` directory:
 
   >>> ls('parts')
+  d  buildout
   d  mydir
 
+
 As we did not specify a special path, the name of the created
 directory is like the section name ``mydir``.
 
@@ -89,6 +91,7 @@
 The directory was indeed created:
 
   >>> ls('parts')
+  d  buildout
   d  mydir
   d  myotherdir
 
@@ -196,6 +199,7 @@
   The old directories will **not** vanish:
 
   >>> ls('parts')
+  d  buildout
   d  mydir
   d  myotherdir
 



More information about the checkins mailing list