<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -1,4 +1,5 @@
 Autotest.add_hook :initialize do |at|
+  
   at.libs = 'lib:spec'
   
   at.clear_mappings</diff>
      <filename>.autotest</filename>
    </modified>
    <modified>
      <diff>@@ -4,8 +4,8 @@ require 'spec'
 
 module MyExtras
   protected
-  def include_words(string)
-    WordsInclusionMatcher.new(string)
+  def include_phrase(string)
+    PhraseMatcher.new(string)
   end
 
   def collection(params = {})
@@ -25,7 +25,7 @@ Spec::Runner.configure do |config|
   config.mock_with :mocha
 end
 
-class WordsInclusionMatcher
+class PhraseMatcher
   def initialize(string)
     @string = string
     @pattern = /\b#{string}\b/
@@ -37,10 +37,10 @@ class WordsInclusionMatcher
   end
 
   def failure_message
-    &quot;expected #{@actual.inspect} to contain words #{@string.inspect}&quot;
+    &quot;expected #{@actual.inspect} to contain phrase #{@string.inspect}&quot;
   end
 
   def negative_failure_message
-    &quot;expected #{@actual.inspect} not to contain words #{@string.inspect}&quot;
+    &quot;expected #{@actual.inspect} not to contain phrase #{@string.inspect}&quot;
   end
 end</diff>
      <filename>spec/spec_helper.rb</filename>
    </modified>
    <modified>
      <diff>@@ -43,13 +43,13 @@ describe WillPaginate::ViewHelpers::Base do
     end
 
     it &quot;should display shortened end results&quot; do
-      info(:page =&gt; 7, :per_page =&gt; 4).should include_words('strings 25 - 26')
+      info(:page =&gt; 7, :per_page =&gt; 4).should include_phrase('strings 25 - 26')
     end
 
     it &quot;should handle longer class names&quot; do
       collection = @array.paginate(:page =&gt; 2, :per_page =&gt; 5)
       collection.first.stubs(:class).returns(mock('Class', :name =&gt; 'ProjectType'))
-      info(collection).should include_words('project types')
+      info(collection).should include_phrase('project types')
     end
 
     it &quot;should adjust output for single-page collections&quot; do</diff>
      <filename>spec/view_helpers/base_spec.rb</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>89e850cdf4ab6a6547a2f4ead227ffd6838ffdc7</id>
    </parent>
  </parents>
  <author>
    <name>Mislav Marohni&#263;</name>
    <email>mislav.marohnic@gmail.com</email>
  </author>
  <url>http://github.com/mattetti/will_paginate/commit/f9ba6a08c97a74cc783bb02856758956e9e32411</url>
  <id>f9ba6a08c97a74cc783bb02856758956e9e32411</id>
  <committed-date>2008-06-19T16:23:02-07:00</committed-date>
  <authored-date>2008-06-19T16:23:02-07:00</authored-date>
  <message>specs: include_words -&gt; include_phrase</message>
  <tree>5247716de2c00873d0f07eefbeaff5696c7da3c4</tree>
  <committer>
    <name>Mislav Marohni&#263;</name>
    <email>mislav.marohnic@gmail.com</email>
  </committer>
</commit>
