Rspec rendering text

心已入冬 提交于 2019-12-05 03:44:05

If you are using rails 3 or above

expect(response.body).to eq "OK"

will work

response.body.should == "OK"

works for me

describe "render text OK" do   
  post :create, {:agent => valid_attributes}
  # response.should have_content("OK"
  response.should render_template(:text => "OK")
end
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!