summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--spec/node_spec.rb6
-rw-r--r--spec/spec_helper.rb3
2 files changed, 9 insertions, 0 deletions
diff --git a/spec/node_spec.rb b/spec/node_spec.rb
index e6b6543..dd47320 100644
--- a/spec/node_spec.rb
+++ b/spec/node_spec.rb
@@ -120,6 +120,12 @@ describe Zorglub do
Node0.partial(:other_view).should == "view_content"
end
#
+ it "redirect should work" do
+ r = Node0.call( {'PATH_INFO'=>'/do_redirect'} )
+ r.status.should == 302
+ r.header['location'].should == Node0.r(:do_partial,1,2,3)
+ end
+ #
end
#
end
diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb
index 4c86527..f3e4941 100644
--- a/spec/spec_helper.rb
+++ b/spec/spec_helper.rb
@@ -56,6 +56,9 @@ class Node0 < Zorglub::Node
engine 'real'
view r('do_partial')
end
+ def do_redirect
+ redirect r(:do_partial,1,2,3)
+ end
end
#
class Node1 < Zorglub::Node