diff options
Diffstat (limited to 'spec/node_spec.rb')
-rw-r--r-- | spec/node_spec.rb | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/spec/node_spec.rb b/spec/node_spec.rb index 061c6a5..3b2ecc3 100644 --- a/spec/node_spec.rb +++ b/spec/node_spec.rb @@ -257,6 +257,11 @@ describe Zorglub do r.header['Content-type'].should == 'text/plain' end # + it "no view no layout should work as well" do + r = Node0.my_call '/no_view_no_layout' + r.body[0].should == "hello world" + end + # it "haml engine should work" do Node0.app.opt! :engines_cache_enabled, false r = Node0.my_call '/engines/haml' |