mirror of
https://github.com/Shopify/liquid.git
synced 2026-09-15 08:50:45 -07:00
18 lines
374 B
Ruby
18 lines
374 B
Ruby
# frozen_string_literal: true
|
|
|
|
require 'test_helper'
|
|
|
|
class InlineCommentTest < Minitest::Test
|
|
include Liquid
|
|
|
|
def test_basic_usage
|
|
template_source = <<-END_TEMPLATE
|
|
foo{% # this is a comment %}bar
|
|
END_TEMPLATE
|
|
template = Template.parse(template_source)
|
|
rendered = template.render!
|
|
assert_equal("foobar", rendered.strip)
|
|
end
|
|
end
|
|
|