<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -7,35 +7,35 @@ class Tome &lt; ActiveRecord::Base; def param_column; &quot;foo&quot;; end; end
 
 describe FinderFilter do
   before do
-     @controller = BooksController.new
+     @books_controller = BooksController.new
   end
   
   it &quot;should call find on the model&quot; do
      BooksController.finder_filter
-     @controller.params = {:id =&gt; 7}
+     @books_controller.params = {:id =&gt; 7}
      Book.expects(:find).with(7)
-     @controller.find_book
+     @books_controller.find_book
   end
 
   it &quot;should call find on a column when specified&quot; do
      BooksController.finder_filter :by =&gt; :name
-     @controller.params = {:id =&gt; &quot;foo&quot;}
+     @books_controller.params = {:id =&gt; &quot;foo&quot;}
      Book.expects(:find_by_name).with(&quot;foo&quot;)
-     @controller.find_book
+     @books_controller.find_book
   end
 
   it &quot;should call find on a different model when specified&quot; do
      BooksController.finder_filter :novel
-     @controller.params = {:id =&gt; 7}
+     @books_controller.params = {:id =&gt; 7}
      Novel.expects(:find).with(7)
-     @controller.find_novel
+     @books_controller.find_novel
   end
 
   it &quot;should call from_param when param_column is defined&quot; do
     BooksController.finder_filter :tome
-    @controller.params = {:id =&gt; 7}
+    @books_controller.params = {:id =&gt; 7}
     Tome.expects(:from_param).with(7)
-    @controller.find_tome
+    @books_controller.find_tome
   end
 
 end</diff>
      <filename>test/finder_filter_finding_test.rb</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>a50fa6b92eb2190545a8b81ab95f0855e2202d0f</id>
    </parent>
  </parents>
  <author>
    <name>Mike Gunderloy</name>
    <email>MikeG1@larkfarm.com</email>
  </author>
  <url>http://github.com/ffmike/finder_filter/commit/b63df2d883be961d13d364ad8d49c7b8ed60ecbd</url>
  <id>b63df2d883be961d13d364ad8d49c7b8ed60ecbd</id>
  <committed-date>2008-09-06T17:07:00-07:00</committed-date>
  <authored-date>2008-09-06T17:07:00-07:00</authored-date>
  <message>Fix tests to work from rake.</message>
  <tree>708ff793cd48050427c91a49ae155f6e4f27e952</tree>
  <committer>
    <name>Mike Gunderloy</name>
    <email>MikeG1@larkfarm.com</email>
  </committer>
</commit>
