aboutsummaryrefslogtreecommitdiff
path: root/spec/unit/router/call_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/router/call_spec.rb
parentb54c2569a4f22feb750edb723ddfa3e7d33a70f5 (diff)
Improve test structure
Created folder spec/unit/zero and moved all unittest into this folder.
Diffstat (limited to 'spec/unit/router/call_spec.rb')
-rw-r--r--spec/unit/router/call_spec.rb60
1 files changed, 0 insertions, 60 deletions
diff --git a/spec/unit/router/call_spec.rb b/spec/unit/router/call_spec.rb
deleted file mode 100644
index 6f01e3c..0000000
--- a/spec/unit/router/call_spec.rb
+++ /dev/null
@@ -1,60 +0,0 @@
-require 'spec_helper'
-
-describe Zero::Router, '#call' do
- subject { Zero::Router.new(routes) }
- let(:result) { ['success'] }
- let(:content_type) { {'Content-Type' => 'text/html'} }
- let(:status_code) { 200 }
-
- let(:wrong_app) do
- lambda {|env| [200, {'Content-Type' => 'text/html'}, 'Wrong'] }
- end
- let(:app) { SpecApp }
-
- shared_examples_for 'a sample app' do
- it "returns a response" do
- subject.call(env).to_a[0].should eq(status_code)
- subject.call(env).to_a[1].should eq(content_type)
- subject.call(env).to_a[2].should eq(result)
- end
- end
-
- context 'with a single route' do
- let(:routes) {{ '/' => app }}
- let(:env) { EnvGenerator.get('/') }
- it_behaves_like "a sample app"
- end
-
- context 'with multiple router' do
- let(:routes) {{ '/foo' => app, '/wrong' => wrong_app }}
- let(:env) { EnvGenerator.get('/foo') }
- it_behaves_like "a sample app"
- end
-
- context 'with nested routes' do
- let(:routes) {{ '/' => wrong_app, '/foo' => app, '/foo/bar' => wrong_app }}
- let(:env) { EnvGenerator.get('/foo') }
- it_behaves_like "a sample app"
- end
-
- context 'with a route not found' do
- let(:routes) {{ '/foo' => wrong_app, '/foo/bar/baz' => app }}
- let(:env) { EnvGenerator.get('/foo/bar') }
- let(:result) { ['Not found!'] }
- let(:status_code) { 404 }
- it_behaves_like "a sample app"
- end
-
- context 'with parameters' do
- let(:routes) {{ '/foo/:id' => app }}
- let(:env) { EnvGenerator.get('/foo/bar') }
- let(:app) do
- lambda do |env|
- [200, content_type, [Zero::Request.new(env).params['id']]]
- end
- end
- let(:result) { ['bar'] }
-
- it_behaves_like 'a sample app'
- end
-end