(t *testing.T)
| 17 | } |
| 18 | |
| 19 | func TestShowInteractiveList_EmptyItems(t *testing.T) { |
| 20 | items := []ListItem{} |
| 21 | _, err := ShowInteractiveList("Test", items) |
| 22 | require.Error(t, err) |
| 23 | assert.Contains(t, err.Error(), "no items to display") |
| 24 | } |
| 25 | |
| 26 | // Note: Full interactive list testing requires TTY and cannot be automated. |
| 27 | // Manual testing should be performed to verify: |
nothing calls this directly
no test coverage detected