The page url is something like /people?search=name while I used current_path method of capybara it returned /people only.

current_path.should == people_path(:search => 'name')

But it fails saying

expected: "/people?search=name"
got: "/people"

How we can make it pass? Is there is any way to do this?

link|improve this question

50% accept rate
feedback

2 Answers

up vote 17 down vote accepted

Try this:

uri = URI.parse(current_url)
"#{uri.path}?#{uri.query}".should == people_path(:search => 'name')
link|improve this answer
Exactly what I needed. Thanks @nzifnab. – kriysna Mar 9 '11 at 11:15
I'll probably need this syntax very soon, I'm writing tests for a legacy application. Using current_path.should == is working for now (though I need to add a trailing forward-slash as a string). I'm thanking you in advance for code I'll likely need. – Tass Aug 19 '11 at 21:16
feedback

I replaced the _path method with _url to achieve comparing the full urls with parameters.

current_url.should == people_url(:search => 'name')
link|improve this answer
How did you deal with the host part? – Chris Nicola Apr 11 at 22:58
This helped me a lot and was easier to implement than the accepted answer. Thanks! – kikito Apr 25 at 7:39
feedback

Your Answer

 
or
required, but never shown

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