0
0
zero/spec/unit/zero/request/method_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

9 lines
177 B
Ruby

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