mirror of
https://github.com/kemko/liquid.git
synced 2026-01-05 09:45:40 +03:00
Regression test for including assignments
This commit is contained in:
@@ -27,6 +27,9 @@ class TestFileSystem
|
||||
when "pick_a_source"
|
||||
"from TestFileSystem"
|
||||
|
||||
when 'assignments'
|
||||
"{% assign foo = 'bar' %}"
|
||||
|
||||
else
|
||||
template_path
|
||||
end
|
||||
@@ -108,6 +111,10 @@ class IncludeTagTest < Minitest::Test
|
||||
'echo1' => 'test123', 'more_echos' => { "echo2" => 'test321'}
|
||||
end
|
||||
|
||||
def test_included_templates_assigns_variables
|
||||
assert_template_result "bar", "{% include 'assignments' %}{{ foo }}"
|
||||
end
|
||||
|
||||
def test_nested_include_tag
|
||||
assert_template_result "body body_detail", "{% include 'body' %}"
|
||||
|
||||
|
||||
Reference in New Issue
Block a user