(t *testing.T)
| 62 | } |
| 63 | |
| 64 | func TestCommand_link_invalidDirectory(t *testing.T) { |
| 65 | StubCommandLineArgs("link", "/this/path/does/not/exist") |
| 66 | |
| 67 | err := command() |
| 68 | |
| 69 | assert.Equal(t, "invalid directory: /this/path/does/not/exist", err.Error()) |
| 70 | } |
| 71 | |
| 72 | func TestCommand_link_reassignExistingApp(t *testing.T) { |
| 73 | appAlias := "apptastic" |
nothing calls this directly
no test coverage detected