1
0
mirror of https://github.com/duke-git/lancet.git synced 2026-02-04 12:52:28 +08:00

feat: add ReplaceWithMap

This commit is contained in:
dudaodong
2023-05-10 10:29:26 +08:00
parent f5784b0f46
commit c3f1bc39d7
3 changed files with 7 additions and 7 deletions

View File

@@ -398,8 +398,8 @@ func TestIndexOffset(t *testing.T) {
assert.Equal(IndexOffset(str, "f", -1), -1)
}
func TestReplaceByMap(t *testing.T) {
assert := internal.NewAssert(t, "TestReplaceByMap")
func TestReplaceWithMap(t *testing.T) {
assert := internal.NewAssert(t, "TestReplaceWithMap")
str := "ac ab ab ac"
replaces := map[string]string{
@@ -408,5 +408,5 @@ func TestReplaceByMap(t *testing.T) {
}
assert.Equal(str, "ac ab ab ac")
assert.Equal(ReplaceByMap(str, replaces), "1c 12 12 1c")
assert.Equal(ReplaceWithMap(str, replaces), "1c 12 12 1c")
}