0
0
zero/spec/unit/controller/call_spec.rb

23 lines
535 B
Ruby
Raw Normal View History

2012-11-17 14:23:20 +01:00
require 'spec_helper'
describe Zero::Controller, '.call' do
subject { SpecController.call(env) }
let(:env) { EnvGenerator.get('/foo') }
it "returns a response" do
subject.should be_respond_to(:to_a)
end
it "returns an object with the first element being a status" do
subject[0].should be_kind_of(Numeric)
end
2012-11-29 22:22:21 +01:00
it "does not modify an existing request" do
r = Zero::Request.new(env)
r.params['foo'] = 'bar'
subject
r = Zero::Request.create(env)
expect(r.params['foo']).to eq('bar')
end
2012-11-17 14:23:20 +01:00
end