summaryrefslogtreecommitdiffstats
path: root/spec
diff options
context:
space:
mode:
Diffstat (limited to 'spec')
-rw-r--r--spec/node_spec.rb10
-rw-r--r--spec/spec_helper.rb4
2 files changed, 12 insertions, 2 deletions
diff --git a/spec/node_spec.rb b/spec/node_spec.rb
index b667338..f78eb64 100644
--- a/spec/node_spec.rb
+++ b/spec/node_spec.rb
@@ -118,6 +118,16 @@ describe Zorglub do
r.body[0].should == "layout_start view_content layout_end"
end
#
+ it "default mime-type should be text/html" do
+ r = Node0.my_call '/index'
+ r.header['Content-type'].should == 'text/html'
+ end
+ #
+ it "should be able to override mime-type" do
+ r = Node0.my_call '/do_render'
+ r.header['Content-type'].should == 'text/view'
+ 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 35b8e2a..c379361 100644
--- a/spec/spec_helper.rb
+++ b/spec/spec_helper.rb
@@ -18,9 +18,9 @@ RENDER_PROC = Proc.new { |path,obj|
when :layout
"layout_start #{obj.content} layout_end"
when :view
- "view_content"
+ ["view_content", 'text/view']
when :partial
- 'partial_content'
+ ['partial_content','text/partial']
else
raise Exception.new
end