mirror of
https://github.com/kemko/liquid.git
synced 2026-01-01 15:55:40 +03:00
13 lines
279 B
Ruby
13 lines
279 B
Ruby
# frozen_string_literal: true
|
|
|
|
require 'test_helper'
|
|
|
|
class TemplateFactoryUnitTest < Minitest::Test
|
|
include Liquid
|
|
|
|
def test_for_returns_liquid_template_instance
|
|
template = TemplateFactory.new.for("anything")
|
|
assert_instance_of(Liquid::Template, template)
|
|
end
|
|
end
|