summaryrefslogtreecommitdiffstats
path: root/spec
diff options
context:
space:
mode:
Diffstat (limited to 'spec')
-rw-r--r--spec/node_spec.rb4
-rw-r--r--spec/spec_helper.rb2
2 files changed, 5 insertions, 1 deletions
diff --git a/spec/node_spec.rb b/spec/node_spec.rb
index 3aaec55..b3cb97c 100644
--- a/spec/node_spec.rb
+++ b/spec/node_spec.rb
@@ -176,6 +176,10 @@ describe Zorglub do
expect(Node0.partial(:other_view)).to eq 'partial_content'
end
+ it 'partial may override the view' do
+ expect(Node0.partial(:do_partial, 1, 2, view: Node0.r(:do_render))).to eq 'do_render'
+ end
+
it 'partial with hooks should be default' do
Node3.before = 0
Node3.after = 0
diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb
index b81f0cf..c5d55fa 100644
--- a/spec/spec_helper.rb
+++ b/spec/spec_helper.rb
@@ -33,7 +33,7 @@ RENDER_PROC = proc { |_path, obj|
when :view
['view_content', 'text/view']
when :partial
- ['partial_content', 'text/partial']
+ [obj.view =~ /do_render/ ? 'do_render' : 'partial_content', 'text/partial']
else
raise Exception.new
end