mirror of
https://github.com/Shopify/liquid.git
synced 2026-09-15 08:50:45 -07:00
14 lines
323 B
Ruby
14 lines
323 B
Ruby
# frozen_string_literal: true
|
|
|
|
require 'test_helper'
|
|
require 'liquid/legacy'
|
|
|
|
class FiltersTest < Minitest::Test
|
|
include Liquid
|
|
|
|
def test_constants
|
|
assert_equal Liquid::FilterSeparator, Liquid::FILTER_SEPARATOR
|
|
assert_equal Liquid::BlockBody::ContentOfVariable, Liquid::BlockBody::CONTENT_OF_VARIABLE
|
|
end
|
|
end
|