summaryrefslogtreecommitdiffstats
path: root/spec/node_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/node_spec.rb')
-rw-r--r--spec/node_spec.rb24
1 files changed, 24 insertions, 0 deletions
diff --git a/spec/node_spec.rb b/spec/node_spec.rb
index 279ec2b..72230bc 100644
--- a/spec/node_spec.rb
+++ b/spec/node_spec.rb
@@ -127,6 +127,30 @@ describe Zorglub do
Node3.after.should == 3
end
#
+ it "inherited before_all hook should work" do
+ Node3.before = 0
+ Node3.after = 0
+ Node3.before.should == 0
+ Node8.my_call '/index'
+ Node3.before.should == 1
+ Node8.my_call '/index'
+ Node3.before.should == 2
+ Node8.my_call '/index'
+ Node3.before.should == 3
+ end
+ #
+ it "inherited after_all hook should work" do
+ Node3.before = 0
+ Node3.after = 0
+ Node3.after.should == 0
+ Node8.my_call '/index'
+ Node3.after.should == 1
+ Node8.my_call '/index'
+ Node3.after.should == 2
+ Node8.my_call '/index'
+ Node3.after.should == 3
+ end
+ #
it "should find view and layout and render them" do
r = Node0.my_call '/do_render'
r.status.should == 200