mirror of
https://github.com/kemko/liquid.git
synced 2026-01-06 02:05:41 +03:00
Better test, resuse Hash block
This commit is contained in:
@@ -93,9 +93,7 @@ module Liquid
|
||||
context = case args.first
|
||||
when Liquid::Context
|
||||
args.shift
|
||||
when Liquid::Drop
|
||||
Context.new(args.shift, instance_assigns, registers, @rethrow_errors)
|
||||
when Hash
|
||||
when Hash, Liquid::Drop
|
||||
Context.new([args.shift, assigns], instance_assigns, registers, @rethrow_errors, @resource_limits)
|
||||
when nil
|
||||
Context.new(assigns, instance_assigns, registers, @rethrow_errors, @resource_limits)
|
||||
|
||||
@@ -6,7 +6,7 @@ class TemplateContextDrop < Liquid::Drop
|
||||
end
|
||||
|
||||
def foo
|
||||
'foo'
|
||||
'fizzbuzz'
|
||||
end
|
||||
end
|
||||
|
||||
@@ -134,7 +134,7 @@ class TemplateTest < Test::Unit::TestCase
|
||||
def test_can_use_drop_as_context
|
||||
t = Template.new
|
||||
drop = TemplateContextDrop.new
|
||||
assert_equal 'foo', t.parse('{{foo}}').render(drop)
|
||||
assert_equal 'fizzbuzz', t.parse('{{foo}}').render(drop)
|
||||
assert_equal 'bar', t.parse('{{bar}}').render(drop)
|
||||
end
|
||||
end # TemplateTest
|
||||
|
||||
Reference in New Issue
Block a user