(t *testing.T)
| 1051 | } |
| 1052 | |
| 1053 | func TestModel_ExecuteMenuCommandAttach(t *testing.T) { |
| 1054 | m := newTestModel() |
| 1055 | _, cmd := m.executeMenuCommand("abc123def456", docker.ATTACH) |
| 1056 | if cmd == nil { |
| 1057 | t.Fatal("expected attach command to return non-nil cmd") |
| 1058 | } |
| 1059 | } |
| 1060 | |
| 1061 | func TestModel_F7TogglesHeader(t *testing.T) { |
| 1062 | m := newTestModel() |
nothing calls this directly
no test coverage detected