diff options
Diffstat (limited to 'spec')
-rw-r--r-- | spec/node_spec.rb | 5 | ||||
-rw-r--r-- | spec/spec_helper.rb | 4 |
2 files changed, 9 insertions, 0 deletions
diff --git a/spec/node_spec.rb b/spec/node_spec.rb index 3b2ecc3..058e626 100644 --- a/spec/node_spec.rb +++ b/spec/node_spec.rb @@ -166,6 +166,11 @@ describe Zorglub do r.header['Content-type'].should == 'text/view' end # + it "should be able to override through rack response mime-type" do + r = Node0.my_call '/do_content_type' + r.header['Content-type'].should == 'text/mine' + end + # it "partial should render correctly" do Node0.partial({},:do_partial, 1, 2).should == 'partial_content' end diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index a88a25c..eea6bfe 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -60,6 +60,10 @@ class Node0 < Zorglub::Node def do_render engine! 'real' end + def do_content_type + engine! 'real' + response.header['Content-Type'] = 'text/mine' + end def do_partial a1, a2 engine! 'real' end |