TestSpec_PublicAPI_IsRunningInCI validates that IsRunningInCI returns a bool without panicking. Spec: "Detects CI environment"
(t *testing.T)
| 86 | // TestSpec_PublicAPI_IsRunningInCI validates that IsRunningInCI returns a bool without panicking. |
| 87 | // Spec: "Detects CI environment" |
| 88 | func TestSpec_PublicAPI_IsRunningInCI(t *testing.T) { |
| 89 | result := cli.IsRunningInCI() |
| 90 | _ = result // result is environment-dependent; ensure no panic |
| 91 | } |
| 92 | |
| 93 | // TestSpec_Types_ShellType validates the documented ShellType string alias and its constants. |
| 94 | // Spec: ShellType string alias with values "bash", "zsh", "fish", "powershell", "unknown" |
nothing calls this directly
no test coverage detected