mirror of
https://github.com/gohugoio/hugo.git
synced 2025-04-05 18:10:19 +00:00
Add tests for Replace
This commit is contained in:
parent
26856c3b75
commit
99aee30410
1 changed files with 15 additions and 0 deletions
|
@ -853,6 +853,21 @@ func TestChomp(t *testing.T) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func TestReplace(t *testing.T) {
|
||||||
|
v, _ := Replace("aab", "a", "b")
|
||||||
|
assert.Equal(t, "bbb", v)
|
||||||
|
v, _ = Replace("11a11", 1, 2)
|
||||||
|
assert.Equal(t, "22a22", v)
|
||||||
|
v, _ = Replace(12345, 1, 2)
|
||||||
|
assert.Equal(t, "22345", v)
|
||||||
|
_, e := Replace(tstNoStringer{}, "a", "b")
|
||||||
|
assert.NotNil(t, e, "tstNoStringer isn't trimmable")
|
||||||
|
_, e = Replace("a", tstNoStringer{}, "b")
|
||||||
|
assert.NotNil(t, e, "tstNoStringer cannot be converted to string")
|
||||||
|
_, e = Replace("a", "b", tstNoStringer{})
|
||||||
|
assert.NotNil(t, e, "tstNoStringer cannot be converted to string")
|
||||||
|
}
|
||||||
|
|
||||||
func TestTrim(t *testing.T) {
|
func TestTrim(t *testing.T) {
|
||||||
v, _ := Trim("1234 my way 13", "123")
|
v, _ := Trim("1234 my way 13", "123")
|
||||||
assert.Equal(t, "4 my way ", v)
|
assert.Equal(t, "4 my way ", v)
|
||||||
|
|
Loading…
Reference in a new issue