<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -22,21 +22,17 @@ in PROJECT_HOME/spec/steps/article_steps_spec.rb
   
   describe &quot;Given $count articles&quot; do
     it &quot;should create 1 articles for count=1&quot; do
-      StepSpecr.spec &quot;Given 1 articles&quot; do
-        step_group :articles
-        before do
-          class Article
-          end
-          Article.should_receive(:create)
-        end
+      class Article
       end
+      Article.should_receive :create
+      step_eval &quot;Given 1 article&quot;, :articles
     end
   end
     
 Running the example will perform the following actions:
   
 1. It will (try to) collect the steps supplied to step_group :articles 
-2. It will run the story
+2. It will run the step
 3. It will FAIL ...
 
   $  script/spec --format specdoc spec/steps/article_steps_spec.rb
@@ -62,6 +58,8 @@ You want a step that creates modelobjects that are specified in the story:
   Given 17 lists
   ...
 
+Using StepSpecr.step is a little bit more involved than plain step_eval but gives you 
+a facility to configure the thing so that you can DRY it up.
 This will be more than one example: (Just showing the description - BDD doesn't mean to write more than one example at a time)
 
    describe &quot;Given $count $models&quot; do</diff>
      <filename>README</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>f4a1febd6021acc7a5bec7a92890ddfb13b55a0a</id>
    </parent>
  </parents>
  <author>
    <name>Matthias Hennemeyer</name>
    <email>mhennemeyer@gmail.com</email>
  </author>
  <url>http://github.com/mhennemeyer/stepspecr/commit/906c8198cede00e4b65f05246cd3d939f18f6b64</url>
  <id>906c8198cede00e4b65f05246cd3d939f18f6b64</id>
  <committed-date>2008-05-03T07:17:55-07:00</committed-date>
  <authored-date>2008-05-03T07:17:55-07:00</authored-date>
  <message>Changed README.</message>
  <tree>96981e94eed2c77a303274efc61f54e12ae3e873</tree>
  <committer>
    <name>Matthias Hennemeyer</name>
    <email>mhennemeyer@gmail.com</email>
  </committer>
</commit>
