magic/pkg/env/shell_test.go
2026-03-28 19:25:12 +08:00

23 lines
346 B
Go

package env
import "testing"
func TestGetShellName(t *testing.T) {
tests := []struct {
name string
want string
}{
{
name: "",
want: "",
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
if got := GetShellName(); got != tt.want {
t.Errorf("GetShellName() = %v, want %v", got, tt.want)
}
})
}
}