Допустим, у нас есть следующий код:
class Post < ActiveRecord::Base
def self.fix_published_times
where(:published => true, :published_at => nil).limit(5).each do |post
post.fix_published_at!
end
end
end
Как мне указать Post#fix_published__at!
с should_receive?