diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2012-01-03 22:53:30 +0100 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2012-01-03 22:53:30 +0100 |
commit | d11475831dd832bda1bad297dce6cc0fc630f3d4 (patch) | |
tree | 185acfba2225291224923924dcaebd8151396e74 /spec/spec_helper.rb | |
parent | 0ea8b5b51b5825e7c69c3b0ed1f987166de6b598 (diff) | |
download | zorglub-d11475831dd832bda1bad297dce6cc0fc630f3d4.zip zorglub-d11475831dd832bda1bad297dce6cc0fc630f3d4.tar.gz |
spec: update Node class names and usage
Diffstat (limited to 'spec/spec_helper.rb')
-rw-r--r-- | spec/spec_helper.rb | 42 |
1 files changed, 21 insertions, 21 deletions
diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index 6dc4275..faf5cc3 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -12,10 +12,10 @@ require 'yaml' # require 'zorglub' # -ENGINE_PROC = Proc.new { |path,obj| {:path=>path,:layout=>obj.layout,:view=>obj.view,:args=>obj.args}.to_yaml } -Zorglub::Config.register_engine 'default', nil, ENGINE_PROC -Zorglub::Config.register_engine 'spec-engine-1', 'spec', ENGINE_PROC -Zorglub::Config.register_engine 'spec-engine-2', 'spec', ENGINE_PROC +HASH_PROC = Proc.new { |path,obj| {:path=>path,:layout=>obj.layout,:view=>obj.view,:args=>obj.args}.to_yaml } +Zorglub::Config.register_engine 'default', nil, HASH_PROC +Zorglub::Config.register_engine 'engine-1', 'spec', HASH_PROC +Zorglub::Config.register_engine 'engine-2', 'spec', HASH_PROC # Zorglub::Config[:engine] = 'default' Zorglub::Config.root = File.join Dir.pwd, 'spec', 'data' @@ -37,37 +37,37 @@ class Node0 < Zorglub::Node end # class Node1 < Zorglub::Node + layout 'layout-1' + engine 'engine-1' + def index + layout 'main' + engine 'engine-2' + end +end +# +class Node2 < Node1 + # inherited from Node1 +end +# +class Node3 < Zorglub::Node @before=0 @after=0 class << self attr_accessor :before, :after end before_all do |node| - Node1.before +=1 + Node3.before +=1 end after_all do |node| - Node1.after +=1 + Node3.after +=1 end - layout 'spec-layout-1' - engine 'spec-engine-1' + layout 'layout-2' + engine 'engine-2' def index (self.class.before-self.class.after).should == 1 end end # -class Node2 < Zorglub::Node - layout 'spec-layout-2' - engine 'spec-engine-2' - def index - layout 'main' - engine 'spec-engine-1' - end -end -# -class Node3 < Node2 - # inherited from Node2 -end -# APP = Zorglub::App.new do map '/spec0', Node0 map '/spec1', Node1 |