debian-mirror-gitlab/workhorse-vendor/github.com/alecthomas/chroma/coalesce_test.go

20 lines
367 B
Go
Raw Normal View History

2021-04-17 20:07:23 +05:30
package chroma
import (
"testing"
"github.com/alecthomas/assert"
)
func TestCoalesce(t *testing.T) {
lexer := Coalesce(MustNewLexer(nil, Rules{
"root": []Rule{
{`[!@#$%^&*()]`, Punctuation, nil},
},
}))
actual, err := Tokenise(lexer, nil, "!@#$")
assert.NoError(t, err)
expected := []Token{{Punctuation, "!@#$"}}
assert.Equal(t, expected, actual)
}