mirror of
https://github.com/kemko/liquid.git
synced 2026-01-01 15:55:40 +03:00
Update test to cover multiple consecutive dashes in identifiers.
This commit is contained in:
@@ -37,8 +37,8 @@ class LexerUnitTest < Minitest::Test
|
||||
tokens = Lexer.new('2foo').tokenize
|
||||
assert_equal [[:number, '2'], [:id, 'foo'], [:end_of_string]], tokens
|
||||
|
||||
tokens = Lexer.new('foo-bar-baz-').tokenize
|
||||
assert_equal [[:id, 'foo-bar-baz'], [:dash, "-"], [:end_of_string]], tokens
|
||||
tokens = Lexer.new('foo-bar--baz-').tokenize
|
||||
assert_equal [[:id, 'foo-bar--baz'], [:dash, "-"], [:end_of_string]], tokens
|
||||
end
|
||||
|
||||
def test_whitespace
|
||||
|
||||
Reference in New Issue
Block a user