aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test
diff options
context:
space:
mode:
authorJosé Valim <jose.valim@gmail.com>2012-05-17 23:45:43 -0700
committerJosé Valim <jose.valim@gmail.com>2012-05-17 23:45:43 -0700
commita6a8957132f86684fd15fbfa2737350b8a07cc5b (patch)
treee20508a1ac70ec40be636faec79a20e771e2adc4 /actionpack/test
parent6bb86e1f3f7f9e11ee1c056d8742125173ecbce1 (diff)
parent793205cccfb3addd8f6aca59d60655b55e4fc38e (diff)
downloadrails-a6a8957132f86684fd15fbfa2737350b8a07cc5b.tar.gz
rails-a6a8957132f86684fd15fbfa2737350b8a07cc5b.tar.bz2
rails-a6a8957132f86684fd15fbfa2737350b8a07cc5b.zip
Merge pull request #6372 from richo/bugs/middleware_stack_as_array
Add some common Array methods to the middleware stack
Diffstat (limited to 'actionpack/test')
-rw-r--r--actionpack/test/dispatch/middleware_stack_test.rb9
1 files changed, 7 insertions, 2 deletions
diff --git a/actionpack/test/dispatch/middleware_stack_test.rb b/actionpack/test/dispatch/middleware_stack_test.rb
index 4191ed1ff4..948a690979 100644
--- a/actionpack/test/dispatch/middleware_stack_test.rb
+++ b/actionpack/test/dispatch/middleware_stack_test.rb
@@ -45,7 +45,7 @@ class MiddlewareStackTest < ActiveSupport::TestCase
assert_equal BazMiddleware, @stack.last.klass
assert_equal([true, {:foo => "bar"}], @stack.last.args)
end
-
+
test "use should push middleware class with block arguments onto the stack" do
proc = Proc.new {}
assert_difference "@stack.size" do
@@ -54,7 +54,7 @@ class MiddlewareStackTest < ActiveSupport::TestCase
assert_equal BlockMiddleware, @stack.last.klass
assert_equal proc, @stack.last.block
end
-
+
test "insert inserts middleware at the integer index" do
@stack.insert(1, BazMiddleware)
assert_equal BazMiddleware, @stack[1].klass
@@ -87,6 +87,11 @@ class MiddlewareStackTest < ActiveSupport::TestCase
assert_equal FooMiddleware, @stack[0].klass
end
+ test "unshift adds a new middleware at the beginning of the stack" do
+ @stack.unshift :"MiddlewareStackTest::BazMiddleware"
+ assert_equal BazMiddleware, @stack.first.klass
+ end
+
test "raise an error on invalid index" do
assert_raise RuntimeError do
@stack.insert("HiyaMiddleware", BazMiddleware)