0
0
zero/spec/unit/request/path_spec.rb
2012-11-13 07:53:27 +01:00

8 lines
172 B
Ruby

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