0
0
zero/spec/unit/request/parameter/query_spec.rb
2012-11-30 14:46:52 +01:00

26 lines
672 B
Ruby

require 'spec_helper'
describe Zero::Request::Parameter, '#query' do
subject { Zero::Request::Parameter.new(env) }
context 'without parameters' do
let(:env) { EnvGenerator.get('/foo') }
its(:query) { should == {} }
end
context 'with a query string' do
let(:env) { EnvGenerator.get('/foo?bar=baz') }
its(:query) { should == {'bar' => 'baz'} }
end
context 'with a post body' do
let(:env) { EnvGenerator.post('/foo', {:input => 'bar=baz'}) }
its(:query) { should == {} }
end
context 'with special characters' do
let(:env) { EnvGenerator.get('/foo?bar=foo%20bar') }
its(:query) { should == {'bar' => 'foo bar'} }
end
end