<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -20,6 +20,30 @@ Feature: stub find all
       end
       &quot;&quot;&quot;
 
+  Scenario: pass with all()
+    Given &quot;app/controllers/things_controller.rb&quot; with
+      &quot;&quot;&quot;
+      class ThingsController &lt; ApplicationController
+        def index
+          @things = Thing.all
+        end
+      end
+      &quot;&quot;&quot;
+    When I run &quot;spec/controllers/things_controller_spec.rb&quot;
+    Then I should see &quot;0 failures&quot;
+
+  Scenario: pass with find(:all)
+    Given &quot;app/controllers/things_controller.rb&quot; with
+      &quot;&quot;&quot;
+      class ThingsController &lt; ApplicationController
+        def index
+          @things = Thing.find(:all)
+        end
+      end
+      &quot;&quot;&quot;
+    When I run &quot;spec/controllers/things_controller_spec.rb&quot;
+    Then I should see &quot;0 failures&quot;
+
   Scenario: fail on no index action
     Given &quot;app/controllers/things_controller.rb&quot; with
       &quot;&quot;&quot;
@@ -30,3 +54,29 @@ Feature: stub find all
     Then I should see &quot;No action responded to index&quot;
     And I should see &quot;1 failure&quot;
 
+@wip
+  Scenario: fail on no access to model
+    Given &quot;app/controllers/things_controller.rb&quot; with
+      &quot;&quot;&quot;
+      class ThingsController &lt; ApplicationController
+        def index
+        end
+      end
+      &quot;&quot;&quot;
+    When I run &quot;spec/controllers/things_controller_spec.rb&quot;
+    Then I should see &quot;No access to model&quot;
+    And I should see &quot;1 failure&quot;
+
+  Scenario: fail on no assignment
+    Given &quot;app/controllers/things_controller.rb&quot; with
+      &quot;&quot;&quot;
+      class ThingsController &lt; ApplicationController
+        def index
+          Thing.all
+        end
+      end
+      &quot;&quot;&quot;
+    When I run &quot;spec/controllers/things_controller_spec.rb&quot;
+    Then I should see &quot;got nil&quot;
+    And I should see &quot;1 failure&quot;
+</diff>
      <filename>features/stub_find_all.feature</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>c66ee4f9d5ba527227eb8b737734fa51eecf7fcd</id>
    </parent>
  </parents>
  <author>
    <name>David Chelimsky</name>
    <email>dchelimsky@gmail.com</email>
  </author>
  <url>http://github.com/dchelimsky/stubble/commit/08c3f05403727f91288e12051e23b1cb3ca9216d</url>
  <id>08c3f05403727f91288e12051e23b1cb3ca9216d</id>
  <committed-date>2009-09-17T00:08:25-07:00</committed-date>
  <authored-date>2009-09-17T00:08:25-07:00</authored-date>
  <message>more scenarios for stub all/find(:all)</message>
  <tree>f32554e0d499933388dbc9c4ed0516abf57f7c73</tree>
  <committer>
    <name>David Chelimsky</name>
    <email>dchelimsky@gmail.com</email>
  </committer>
</commit>
