mirror of
https://github.com/JanDeDobbeleer/oh-my-posh.git
synced 2025-02-21 02:55:37 -08:00
43 lines
743 B
Go
43 lines
743 B
Go
|
//go:build windows
|
||
|
|
||
|
package segments
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
"github.com/stretchr/testify/assert"
|
||
|
)
|
||
|
|
||
|
const TestRootPath = "C:/"
|
||
|
|
||
|
func TestResolveGitPath(t *testing.T) {
|
||
|
cases := []struct {
|
||
|
Case string
|
||
|
Base string
|
||
|
Path string
|
||
|
Expected string
|
||
|
}{
|
||
|
{
|
||
|
Case: "relative path",
|
||
|
Base: "dir\\",
|
||
|
Path: "sub",
|
||
|
Expected: "dir/sub",
|
||
|
},
|
||
|
{
|
||
|
Case: "absolute path",
|
||
|
Base: "C:\\base",
|
||
|
Path: "C:/absolute/path",
|
||
|
Expected: "C:/absolute/path",
|
||
|
},
|
||
|
{
|
||
|
Case: "disk-relative path",
|
||
|
Base: "C:\\base",
|
||
|
Path: "/absolute/path",
|
||
|
Expected: "C:/absolute/path",
|
||
|
},
|
||
|
}
|
||
|
for _, tc := range cases {
|
||
|
assert.Equal(t, tc.Expected, resolveGitPath(tc.Base, tc.Path), tc.Case)
|
||
|
}
|
||
|
}
|