Add tests for text immediately following liquid tag

This commit is contained in:
Dylan Thacker-Smith
2021-02-19 13:49:39 -05:00
parent fff6c565c1
commit 6ddfaec3f9

View File

@@ -19,4 +19,9 @@ class InlineCommentTest < Minitest::Test
LIQUID
assert_template_result('before()after', source)
end
def test_no_space_after_hash_symbol
assert_template_result('', '{% #immediate text %}')
assert_template_result('', '{% liquid #immediate text %}')
end
end