diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2014-02-12 16:17:20 +0100 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2014-02-12 16:17:20 +0100 |
commit | f375bbf5b8e3dc463b71dfc9fe02299da695d92f (patch) | |
tree | 151c67067bff91b1715f89410d778bad26a5faa3 /spec/spec_helper.rb | |
parent | 060756af9e496d076823ca79f5e59488ec028209 (diff) | |
download | zorglub-f375bbf5b8e3dc463b71dfc9fe02299da695d92f.zip zorglub-f375bbf5b8e3dc463b71dfc9fe02299da695d92f.tar.gz |
accept Content-Type change via rack response
Diffstat (limited to 'spec/spec_helper.rb')
-rw-r--r-- | spec/spec_helper.rb | 4 |
1 files changed, 4 insertions, 0 deletions
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 |