Files
buildx/util/gitutil/path_windows_test.go
T

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"))
}