ruby – 如何使用rspec测试sinatra中的重定向?

前端之家收集整理的这篇文章主要介绍了ruby – 如何使用rspec测试sinatra中的重定向?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在尝试在我的sinatra应用程序的主页(更具体地说,一个padrino应用程序),在rspec中测试重定向.我发现redirect_to,但它似乎只在rspec-rails.你如何在sinatra中测试它?

所以基本上,我会喜欢这样的:

it "Homepage should redirect to locations#index" do
    get "/"
    last_response.should be_redirect   # This works,but I want it to be more specific
    # last_response.should redirect_to('/locations') # Only works for rspec-rails
  end

解决方法

尝试这个(未测试):
it "Homepage should redirect to locations#index" do
  get "/"
  last_response.should be_redirect   # This works,but I want it to be more specific
  follow_redirect!
  last_request.url.should == 'http://example.org/locations'
end
原文链接:https://www.f2er.com/ruby/273779.html

猜你在找的Ruby相关文章