(t *testing.T)
| 50 | } |
| 51 | |
| 52 | func TestUnuseProfileResolveArg(t *testing.T) { |
| 53 | is := is.New(t) |
| 54 | |
| 55 | profile, err := unuseProfileResolve([]string{"work"}, &vcsMock{}) |
| 56 | |
| 57 | is.NoErr(err) |
| 58 | is.Equal(profile, "work") |
| 59 | } |
| 60 | |
| 61 | func TestUnuseProfileResolveCurrent(t *testing.T) { |
| 62 | is := is.New(t) |
nothing calls this directly
no test coverage detected