0
0
zero/spec/unit/request/parameter/custom_spec.rb
Stormwind cd97198e22 Kill all mutants in Zero::Request::Parameter
I've also changed "extract_query_params" because it does not matter, if the
query string it empty or not for the "parse_string" method.
2013-01-06 10:28:13 +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