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.rb12
1 files changed, 6 insertions, 6 deletions
diff --git a/spec/node_spec.rb b/spec/node_spec.rb
index f25c45a..06b7fd1 100644
--- a/spec/node_spec.rb
+++ b/spec/node_spec.rb
@@ -55,9 +55,9 @@ describe Zorglub do
h = YAML.load r.body[0]
ly = File.join Zorglub::Config.root, Zorglub::Config.layout_dir, Node0.layout
vu = File.join Zorglub::Config.root, Zorglub::Config.view_dir, Node0.r, 'index'
- h['path'].should == ly
- h['layout'].should == ly
- h['view'].should == vu
+ h[:path].should == ly
+ h[:layout].should == ly
+ h[:view].should == vu
end
#
#
@@ -67,9 +67,9 @@ describe Zorglub do
h = YAML.load r.body[0]
ly = File.join Zorglub::Config.root, Zorglub::Config.layout_dir, 'main.spec'
vu = File.join Zorglub::Config.root, Zorglub::Config.view_dir, Node2.r, 'index.spec'
- h['path'].should == ly
- h['layout'].should == ly
- h['view'].should == vu
+ h[:path].should == ly
+ h[:layout].should == ly
+ h[:view].should == vu
end
#
end