0
0
Fork 0

added specs for #payload

This commit is contained in:
Gibheer 2012-11-14 20:57:18 +01:00
parent 51d2612dc5
commit 77ea256afb
1 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,24 @@
require 'spec_helper'
describe Zero::Request::Parameter, '#payload' do
subject { Zero::Request::Parameter.new(env) }
context "without parameters" do
let(:env) { EnvGenerator.get('/foo') }
its(:payload) { should == {} }
end
context "with a query string" do
let(:env) { EnvGenerator.get('/foo?bar=baz') }
its(:payload) { should == {} }
end
context "with a post body" do
let(:env) do
EnvGenerator.post('/foo', {
:input => 'bar=baz', 'CONTENT_TYPE' => 'multipart/form-data'
})
end
its(:payload) { should == {'bar' => 'baz'} }
end
end