(t *testing.T)
| 64 | } |
| 65 | |
| 66 | func TestExec_OpenAI_gpt5_codex(t *testing.T) { |
| 67 | t.Parallel() |
| 68 | out := runCLI(t, "run", "--exec", "testdata/basic.yaml", "--model=openai/gpt-5-codex", "What's 2+2?") |
| 69 | |
| 70 | // Model reasoning summary varies, just check for the core response |
| 71 | require.Contains(t, out, "4") |
| 72 | } |
| 73 | |
| 74 | func TestExec_Anthropic(t *testing.T) { |
| 75 | t.Parallel() |