Reserve future support for comment line before a tag name

This commit is contained in:
Dylan Thacker-Smith
2021-02-26 06:52:11 -05:00
parent ab455480fa
commit 0fc45ca3af
3 changed files with 13 additions and 0 deletions

View File

@@ -26,7 +26,9 @@ class InlineCommentTest < Minitest::Test
def test_comment_inline_tag
assert_template_result('ok', '{% echo "ok" # output something from a tag %}')
end
def test_comment_line_before_tag
assert_template_result('ok', '{% # this sort of comment also
echo "ok" %}')
end