aboutsummaryrefslogtreecommitdiff
path: root/spec/unit/request/method_spec.rb
diff options
context:
space:
mode:
authorStormwind <stormwind@stormwinds-page.de>2013-01-06 20:24:39 +0100
committerStormwind <stormwind@stormwinds-page.de>2013-01-06 20:24:39 +0100
commit3a82183563986d368e81b5c314e69f169805fd1f (patch)
tree76a9debc31491d179163dd4ed10ed465e2250ecc /spec/unit/request/method_spec.rb
parentb54c2569a4f22feb750edb723ddfa3e7d33a70f5 (diff)
Improve test structure
Created folder spec/unit/zero and moved all unittest into this folder.
Diffstat (limited to 'spec/unit/request/method_spec.rb')
-rw-r--r--spec/unit/request/method_spec.rb8
1 files changed, 0 insertions, 8 deletions
diff --git a/spec/unit/request/method_spec.rb b/spec/unit/request/method_spec.rb
deleted file mode 100644
index 42ea56a..0000000
--- a/spec/unit/request/method_spec.rb
+++ /dev/null
@@ -1,8 +0,0 @@
-require 'spec_helper'
-
-describe Zero::Request, '#method' do
- subject { Zero::Request.new(env) }
- let(:env) { EnvGenerator.get('/foo') }
-
- its(:method) { should == :get }
-end