0

次のコードがあるとしましょう。

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

should_receiveでどのように指定する必要がありますか?Post#fix_published__at!

4

1 に答える 1

1

これに沿った何かが機能するはずです:

  mock_posts = [mock("post 1"), mock("post 2")]
  Post.should_receive(:where).with(:published => true, :published_at => nil).and_return(mock_posts)
  mock_posts.each do |mp|
    mp.should_receive(:fix_published_at!).and_return(true)
  end
  Post.fix_published_times
于 2011-03-23T11:56:37.610 に答える