Helpers
()
| 81 | // Helpers |
| 82 | |
| 83 | func newTestRemove() Remove { |
| 84 | app := &docker.Application{ |
| 85 | Settings: docker.ApplicationSettings{ |
| 86 | Name: "test-app", |
| 87 | Host: "test-app.example.com", |
| 88 | }, |
| 89 | } |
| 90 | return NewRemove(nil, app) |
| 91 | } |
| 92 | |
| 93 | func updateRemove(m Remove, msg tea.Msg) (Remove, tea.Cmd) { |
| 94 | comp, cmd := m.Update(msg) |
no test coverage detected
searching dependent graphs…