(t *testing.T)
| 189 | } |
| 190 | |
| 191 | func TestGetHelpContent_ContainsBasics(t *testing.T) { |
| 192 | help := getHelpContent() |
| 193 | |
| 194 | // Check for essential content |
| 195 | if !contains(help, "Quit") { |
| 196 | t.Error("Help should contain 'Quit' section") |
| 197 | } |
| 198 | if !contains(help, "Movement") { |
| 199 | t.Error("Help should contain 'Movement' section") |
| 200 | } |
| 201 | if !contains(help, "Sort") { |
| 202 | t.Error("Help should contain 'Sort' section") |
| 203 | } |
| 204 | } |
| 205 | |
| 206 | func TestUsefulInfo_NotEmpty(t *testing.T) { |
| 207 | // Just verify it doesn't panic |
nothing calls this directly
no test coverage detected