mder/util_test.go

14 lines
157 B
Go
Raw Normal View History

2022-07-24 14:26:30 +08:00
package main
import (
"fmt"
"strings"
"testing"
)
func TestTrim(t *testing.T) {
var a = "/tmp/blog/"
a = strings.TrimSuffix(a, "/")
fmt.Println(a)
}