mirror of
https://github.com/TeaOSLab/EdgeNode.git
synced 2025-11-03 06:40:25 +08:00
14 lines
259 B
Go
14 lines
259 B
Go
package configutils
|
|
|
|
import (
|
|
"github.com/iwind/TeaGo/assert"
|
|
"testing"
|
|
)
|
|
|
|
func TestMatchKeyword(t *testing.T) {
|
|
a := assert.NewAssertion(t)
|
|
a.IsTrue(MatchKeyword("a b c", "a"))
|
|
a.IsFalse(MatchKeyword("a b c", ""))
|
|
a.IsTrue(MatchKeyword("abc", "BC"))
|
|
}
|