blob: 940e80e8036df89fe1538d7aed0af9fd286535f0 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
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
|