0
0
zero/spec/unit/request/path_spec.rb
2012-11-15 22:35:19 +01:00

10 lines
195 B
Ruby

require 'spec_helper'
describe Zero::Request, '#path' do
subject { Zero::Request.new(env) }
let(:path) { '/foo' }
let(:env) { EnvGenerator.get(path) }
its(:path) { should == path }
end