25 lines
709 B
Go
25 lines
709 B
Go
package core
|
|
|
|
import "testing"
|
|
|
|
func TestDeriveDestination(t *testing.T) {
|
|
tests := []struct {
|
|
name string
|
|
uri string
|
|
want string
|
|
}{
|
|
{name: "github short", uri: "technicalpickles/pickled-vim", want: "pickled-vim"},
|
|
{name: "https", uri: "https://github.com/technicalpickles/pickled-vim.git", want: "pickled-vim"},
|
|
{name: "git ssh", uri: "git@github.com:technicalpickles/pickled-vim.git", want: "pickled-vim"},
|
|
{name: "file", uri: "file:///tmp/dotfiles.git", want: "dotfiles"},
|
|
}
|
|
|
|
for _, tt := range tests {
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
if got := deriveDestination(tt.uri); got != tt.want {
|
|
t.Fatalf("deriveDestination(%q) = %q, want %q", tt.uri, got, tt.want)
|
|
}
|
|
})
|
|
}
|
|
}
|