[Checkins] SVN: zc.recipe.cmmi/branches/miles-download-cache/zc/recipe/cmmi/ update tests with logging - all tests now pass

Miles Waller miles at jamkit.com
Tue Jul 17 13:55:18 EDT 2007


Log message for revision 78091:
  update tests with logging - all tests now pass

Changed:
  U   zc.recipe.cmmi/branches/miles-download-cache/zc/recipe/cmmi/README.txt
  U   zc.recipe.cmmi/branches/miles-download-cache/zc/recipe/cmmi/downloadcache.txt

-=-
Modified: zc.recipe.cmmi/branches/miles-download-cache/zc/recipe/cmmi/README.txt
===================================================================
--- zc.recipe.cmmi/branches/miles-download-cache/zc/recipe/cmmi/README.txt	2007-07-17 17:51:47 UTC (rev 78090)
+++ zc.recipe.cmmi/branches/miles-download-cache/zc/recipe/cmmi/README.txt	2007-07-17 17:55:18 UTC (rev 78091)
@@ -22,6 +22,8 @@
 
     >>> print system('bin/buildout'),
     Installing foo.
+    foo: Downloading .../distros/foo.tgz
+    foo: Unpacking and configuring foo.tgz
     configuring foo --prefix=/sample-buildout/parts/foo
     echo building foo
     building foo
@@ -55,6 +57,8 @@
     >>> print system('bin/buildout'),
     Uninstalling foo.
     Installing foo.
+    foo: Downloading .../distros/foo.tgz
+    foo: Unpacking and configuring foo.tgz
     configuring foo --prefix=/sample-buildout/parts/foo -a -b c
     echo building foo
     building foo
@@ -125,10 +129,12 @@
     >>> print system('bin/buildout'),
     Uninstalling foo.
     Installing foo.
+    foo: Downloading .../distros/foo.tgz
+    foo: Unpacking and configuring foo.tgz
     patching file configure
     configuring foo patched --prefix=/sample_buildout/parts/foo
     echo building foo patched
     building foo patched
     echo installing foo patched
     installing foo patched
-    
\ No newline at end of file
+    

Modified: zc.recipe.cmmi/branches/miles-download-cache/zc/recipe/cmmi/downloadcache.txt
===================================================================
--- zc.recipe.cmmi/branches/miles-download-cache/zc/recipe/cmmi/downloadcache.txt	2007-07-17 17:51:47 UTC (rev 78090)
+++ zc.recipe.cmmi/branches/miles-download-cache/zc/recipe/cmmi/downloadcache.txt	2007-07-17 17:55:18 UTC (rev 78091)
@@ -38,17 +38,19 @@
 It creates a make file which is also run:
 
     >>> print system('bin/buildout')
+    In...
     ...
     Installing foo.
     foo: Searching cache at /cache/cmmi
-    foo: Did not find foo.tgz under cache key /cache/cmmi/
-    foo: Cache download /distros/foo.tgz as /cache/cmmi/
+    foo: Did not find foo.tgz under cache key /cache/cmmi/...
+    foo: Cache download /distros/foo.tgz as /cache/cmmi/...
     foo: Unpacking and configuring foo.tgz
     configuring foo /sample-buildout/parts/foo
     echo building foo
     building foo
     echo installing foo
     installing foo
+    <BLANKLINE>
 
 We'll also get the download cache populated.  The buildout doesn't put
 files in the cache directly.  It creates an intermediate directory,
@@ -79,17 +81,19 @@
     ...     remove('parts', f)
    
     >>> print system(buildout)
+    In...
     ...
     Uninstalling foo.
     Installing foo.
     foo: Searching cache at /cache/cmmi
-    foo: Using cache file /cache/cmmi/
+    foo: Using cache file /cache/cmmi/...
     foo: Unpacking and configuring foo.tgz
     configuring foo /sample-buildout/parts/foo
     echo building foo
     building foo
     echo installing foo
     installing foo
+    <BLANKLINE>
 
 This is because the ones in the download cache are used
 



More information about the Checkins mailing list