<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -1,5 +1,6 @@
 - make 'any' work even when the same attribute_query is specified twice: 
-  * Person.any(:conditions =&gt; { :first_name.eql =&gt; &quot;Bob&quot;, :first_name.eql =&gt; &quot;Nathan&quot; })
+  * Person.any(:conditions =&gt; { :first_name.eql =&gt; &quot;Bob&quot;, :first_name.eql =&gt; &quot;Nathan&quot; }) (?)
+  * Person.any(:conditions =&gt; { :first_name.eql =&gt; [&quot;Bob&quot;, &quot;Nathan&quot;] })
 - make it work with objects that include all types of eager loaded associations (?)
 - include support for joined or included attributes (?)
 </diff>
      <filename>TODO.txt</filename>
    </modified>
    <modified>
      <diff>@@ -60,7 +60,7 @@ class ConditionsFuTest &lt; Test::Unit::TestCase
     assert_equal [@bob, @tom],  Person.all(:conditions =&gt; { :favorite_number.eql =&gt; 34 })
     assert_equal [@nathan],  Person.all(:conditions =&gt; { :first_name.eql =&gt; &quot;Nathan&quot;, :last_name.eql =&gt; &quot;Esquenazi&quot; })
     assert_equal @nathan,  Person.first(:conditions =&gt; { :first_name.eql =&gt; &quot;Nathan&quot;, :last_name.eql =&gt; &quot;Esquenazi&quot; })
-    # assert_equal [@nathan, @bob, @nathan2], Person.any(:conditions =&gt; { :first_name.eql =&gt; &quot;Bob&quot;, :first_name.eql =&gt; &quot;Nathan&quot; })
+    assert_equal [@nathan, @bob, @nathan2], Person.any(:conditions =&gt; { :last_name.eql =&gt; &quot;Villa&quot;, :first_name.eql =&gt; &quot;Nathan&quot; })
   end
 
   def test_like_should_work
@@ -70,7 +70,7 @@ class ConditionsFuTest &lt; Test::Unit::TestCase
     assert_equal [@nathan, @nathan2], Person.all(:conditions =&gt; { :first_name.like =&gt; &quot;Nat%&quot; })
     assert_equal [@nathan, @bob, @joan, @tom], Person.all(:conditions =&gt; { :occupation.like =&gt; &quot;%t%&quot; })
     assert_equal [], Person.all(:conditions =&gt; { :first_name.like =&gt; &quot;Nat&quot; })
-    # assert_equal [@nathan, @bob, @nathan2], Person.any(:conditions =&gt; { :first_name.like =&gt; &quot;%Bo%&quot;, :first_name.like =&gt; &quot;%Nat%&quot; })
+    assert_equal [@nathan, @bob, @nathan2], Person.any(:conditions =&gt; { :last_name.like =&gt; &quot;%Vil%&quot;, :first_name.like =&gt; &quot;%Nat%&quot; })
   end
 
   def test_less_than_should_work</diff>
      <filename>test/conditions_fu_test.rb</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>84dc392f001e92353d756e9e1cd698f8bc6720f5</id>
    </parent>
  </parents>
  <author>
    <name>nesquena</name>
    <email>xgamerx10@gmail.com</email>
  </author>
  <url>http://github.com/nesquena/conditions_fu/commit/c48cefac57cfee224de7100e724074084a195878</url>
  <id>c48cefac57cfee224de7100e724074084a195878</id>
  <committed-date>2008-08-26T19:57:49-07:00</committed-date>
  <authored-date>2008-08-26T19:57:49-07:00</authored-date>
  <message>added additional tests for any command</message>
  <tree>ff4f2ac06ed1960e8dc7cb7a8f1cc0a4e7e8903f</tree>
  <committer>
    <name>nesquena</name>
    <email>xgamerx10@gmail.com</email>
  </committer>
</commit>
