mirror of
https://github.com/OliveTin/OliveTin
synced 2025-12-12 09:05:39 +00:00
13 lines
309 B
Go
13 lines
309 B
Go
package config
|
|
|
|
import (
|
|
"github.com/stretchr/testify/assert"
|
|
"testing"
|
|
)
|
|
|
|
func TestGetEmojiByShortName(t *testing.T) {
|
|
assert.Equal(t, "😀", lookupHTMLIcon("smile"), "Find an eomji by short name")
|
|
|
|
assert.Equal(t, "notfound", lookupHTMLIcon("notfound"), "Find an eomji by undefined short name")
|
|
}
|