3
votes
How do I easily parse a URL with parameters in a Rails test?
CGI::parse(querystring) will parse a querystring into a hash. Then, CGI::unescape(string) will undo any URL-encoding in the value.
Alternatively, you can use …
