I'm trying to test for a redirect on the homepage in my sinatra app (more specifically, a padrino app), in rspec. I've found redirect_to, however it seems to be in rspec-rails only. How do you test for it in sinatra?

So basically, I'd like something like this:

  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
link|improve this question

65% accept rate
feedback

2 Answers

up vote 7 down vote accepted

Try this (not tested):

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
link|improve this answer
I'm getting the error: Failure/Error: follow_redirect! Sequel::DatabaseError: SQLite3::SQLException: no such table: locations . I'm guessing it is a database issue though. Will need to look into this further... – zlog Sep 16 '11 at 7:41
Yes, this works. Thanks! – zlog Dec 8 '11 at 11:30
feedback

More directly you can just use last_response.location.

it "Homepage should redirect to locations#index" do
  get "/"
  last_response.should be_redirect
  last_response.location.should include '/locations'
end
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.