[Checkins] SVN: zc.buildout/branches/help-api/src/zc/buildout/tests.py check format of two lines doctring

Tarek Ziade ziade.tarek at gmail.com
Wed Jan 23 17:37:01 EST 2008


Log message for revision 83145:
  check format of two lines doctring

Changed:
  U   zc.buildout/branches/help-api/src/zc/buildout/tests.py

-=-
Modified: zc.buildout/branches/help-api/src/zc/buildout/tests.py
===================================================================
--- zc.buildout/branches/help-api/src/zc/buildout/tests.py	2008-01-23 22:36:17 UTC (rev 83144)
+++ zc.buildout/branches/help-api/src/zc/buildout/tests.py	2008-01-23 22:37:00 UTC (rev 83145)
@@ -698,7 +698,10 @@
     >>> write(sample_buildout, 'my.recipes', 'recipe.py', 
     ... '''
     ... class MyRecipe:
-    ...     "The coolest recipe on Earth."
+    ...     \"\"\"
+    ...     The coolest recipe on Earth.
+    ...     Ever.
+    ...     \"\""
     ...     def __init__(self, buildout, name, options):
     ...         pass
     ...
@@ -711,6 +714,7 @@
     >>> print system('%s describe my.recipes' % buildout) 
     my.recipes
         The coolest recipe on Earth.
+        Ever.
     <BLANKLINE>
 
     Let's add a second entry point in the recipe:
@@ -770,6 +774,7 @@
     >>> print system('%s describe my.recipes:default' % buildout) 
     my.recipes:default
         The coolest recipe on Earth.
+        Ever.
     <BLANKLINE>
 
     >>> print system('%s describe my.recipes:second' % buildout) 
@@ -780,6 +785,7 @@
     >>> print system('%s describe my.recipes:default my.recipes:second' % buildout) 
     my.recipes:default
         The coolest recipe on Earth.
+        Ever.
     my.recipes:second
         Help not available
     <BLANKLINE>



More information about the Checkins mailing list