diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2012-01-03 15:26:30 +0100 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2012-01-03 15:26:30 +0100 |
commit | db921e13e700ac92ca7a4d945ed231868261f0c7 (patch) | |
tree | 057acea67c03fbdc401672a3a546e53a45171a31 /spec/spec_helper.rb | |
parent | 431f39fc2527c5e76895c9ee649216bacf8007cb (diff) | |
download | zorglub-db921e13e700ac92ca7a4d945ed231868261f0c7.zip zorglub-db921e13e700ac92ca7a4d945ed231868261f0c7.tar.gz |
spec_helper/basic_spec: add Node layout/engine inheritance specs
Diffstat (limited to 'spec/spec_helper.rb')
-rw-r--r-- | spec/spec_helper.rb | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index 1376a4d..8a4f174 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -16,19 +16,30 @@ class SpecNode < Zorglub::Node before_all do |node| Zorglub::Node.count +=1 end + layout 'spec-layout-1' + engine 'spec-engine-1' end # -class Temp < SpecNode +class Temp < Zorglub::Node +end +# +class Node0 < Zorglub::Node + # default end # class Node1 < SpecNode + # overridded end # -class Node2 < SpecNode +class Node2 < Zorglub::Node layout 'spec-layout-2' engine 'spec-engine-2' end # +class Node3 < Node2 + # inherited from Node2 +end +# APP = Zorglub::App.new do map '/spec1', Node1 end |