mirror of
https://gitea.com/Lydanne/buildx.git
synced 2025-05-18 00:47:48 +08:00
12 lines
197 B
Go
12 lines
197 B
Go
package gitutil
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestSanitizePathWindows(t *testing.T) {
|
|
assert.Equal(t, "C:\\Users\\foobar", SanitizePath("C:/Users/foobar"))
|
|
}
|