summaryrefslogtreecommitdiffstats
path: root/spec/spec_helper.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/spec_helper.rb')
-rw-r--r--spec/spec_helper.rb4
1 files changed, 4 insertions, 0 deletions
diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb
index cf6af3a..fd3e951 100644
--- a/spec/spec_helper.rb
+++ b/spec/spec_helper.rb
@@ -48,6 +48,10 @@ 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