Michael Hartl RoR教程第12章练习#2

时间:2015-10-06 17:13:31

标签: ruby-on-rails-4

对于那些经历过这个练习的人来说,FILL_IN是什么:

test "feed on Home page" do
  get root_path
  @user.feed.paginate(page: 1).each do |micropost|
    assert_match CGI.escapeHTML(FILL_IN), FILL_IN
  end
end

由于

1 个答案:

答案 0 :(得分:5)

You should match micropost content with body response, it looks like this:

test "feed on Home page" do
  get root_path
  @user.feed.paginate(page: 1).each do |micropost|
    assert_match CGI.escapeHTML(micropost.content), response.body
  end
end
相关问题