mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-23 20:37:12 +01:00
20 lines
382 B
Go
20 lines
382 B
Go
|
package envtemplate
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
)
|
||
|
|
||
|
func TestReplace(t *testing.T) {
|
||
|
f := func(s, resultExpected string) {
|
||
|
t.Helper()
|
||
|
result := Replace([]byte(s))
|
||
|
if string(result) != resultExpected {
|
||
|
t.Fatalf("unexpected result;\ngot\n%q\nwant\n%q", result, resultExpected)
|
||
|
}
|
||
|
}
|
||
|
f("", "")
|
||
|
f("foo", "foo")
|
||
|
f("%{foo}", "%{foo}")
|
||
|
f("foo %{bar} %{baz}", "foo %{bar} %{baz}")
|
||
|
}
|