0
0
zero/spec/unit/zero/request/parameter/custom_spec.rb
Stormwind 3a82183563 Improve test structure
Created folder spec/unit/zero and moved all unittest into this folder.
2013-01-06 20:24:39 +01:00

24 lines
583 B
Ruby

require 'spec_helper'
describe Zero::Request::Parameter, '#custom' do
subject { Zero::Request::Parameter.new(env) }
let(:env) { EnvGenerator.get('/foo') }
it 'returns a set custom parameter' do
subject['foo'] = 'bar'
expect(subject.custom['foo']).to eq('bar')
end
it 'returns the latest set value' do
subject['foo'] = 'first'
subject['foo'] = 'latest'
expect(subject.custom['foo']).to eq('latest')
end
it 'is empty if no custom parameter is set' do
expect(subject.custom).to eq({})
expect(env['zero.params.custom']).to eq({})
end
end