<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -141,7 +141,7 @@ shared_examples_for 'An Aggregatable Class' do
 
       it 'should provide the lowest value of a DateTime property' do
         @dragons.min(:birth_at).should be_kind_of(DateTime)
-        @dragons.min(:birth_at).should == @birth_at
+        @dragons.min(:birth_at).to_s.should == @birth_at.to_s
       end
 
       it 'should provide the lowest value of a Date property' do
@@ -151,7 +151,7 @@ shared_examples_for 'An Aggregatable Class' do
 
       it 'should provide the lowest value of a Time property' do
         @dragons.min(:birth_time).should be_kind_of(Time)
-        @dragons.min(:birth_time).should == @birth_time
+        @dragons.min(:birth_time).to_s.should == @birth_time.to_s
       end
 
       it 'should provide the lowest value when conditions provided' do
@@ -186,7 +186,7 @@ shared_examples_for 'An Aggregatable Class' do
 
       it 'should provide the highest value of a DateTime property' do
         @dragons.min(:birth_at).should be_kind_of(DateTime)
-        @dragons.min(:birth_at).should == @birth_at
+        @dragons.min(:birth_at).to_s.should == @birth_at.to_s
       end
 
       it 'should provide the highest value of a Date property' do
@@ -196,7 +196,7 @@ shared_examples_for 'An Aggregatable Class' do
 
       it 'should provide the highest value of a Time property' do
         @dragons.min(:birth_time).should be_kind_of(Time)
-        @dragons.min(:birth_time).should == @birth_time
+        @dragons.min(:birth_time).to_s.should == @birth_time.to_s
       end
 
       it 'should provide the highest value when conditions provided' do</diff>
      <filename>dm-aggregates/spec/public/shared/aggregate_shared_spec.rb</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>eb1eafe42f822f91132713f2f6a20893836918d6</id>
    </parent>
  </parents>
  <author>
    <name>Dan Kubb</name>
    <email>dan.kubb@gmail.com</email>
  </author>
  <url>http://github.com/datamapper/dm-more/commit/a539a7407c2525fc8dd3575a61d17c98adfd423c</url>
  <id>a539a7407c2525fc8dd3575a61d17c98adfd423c</id>
  <committed-date>2009-11-05T23:32:12-08:00</committed-date>
  <authored-date>2009-11-05T23:27:28-08:00</authored-date>
  <message>[dm-aggregates] Compare Time objects using stringified representations

* Microsecond differences will cause the Time objects not to compare
  properly, and we only care that they are the same at the resolution
  of seconds.</message>
  <tree>9cc9cf6dc63cbba071ce20252bbe635a7dda7d22</tree>
  <committer>
    <name>Dan Kubb</name>
    <email>dan.kubb@gmail.com</email>
  </committer>
</commit>
