Commit d246a68a authored by randx's avatar randx

fix project.last_activity spec

parent cd3d50ca
...@@ -158,7 +158,7 @@ class Project < ActiveRecord::Base ...@@ -158,7 +158,7 @@ class Project < ActiveRecord::Base
end end
def last_activity def last_activity
events.order("created_at DESC").first || nil events.order("created_at ASC").last
end end
def last_activity_date def last_activity_date
......
...@@ -141,7 +141,7 @@ describe Project do ...@@ -141,7 +141,7 @@ describe Project do
let(:last_event) { double } let(:last_event) { double }
before do before do
project.stub(:events).and_return( [ double, double, last_event ] ) project.stub_chain(:events, :order).and_return( [ double, double, last_event ] )
end end
it { project.last_activity.should == last_event } it { project.last_activity.should == last_event }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment