195fbac109
CI / lint (pull_request) Successful in 40s
CI / helm (pull_request) Successful in 38s
CI / build (pull_request) Successful in 48s
CI / quality (pull_request) Successful in 1m0s
CI / typecheck (pull_request) Successful in 1m29s
CI / security (pull_request) Successful in 1m28s
CI / push-validation (pull_request) Successful in 20s
CI / unit_tests (pull_request) Successful in 5m8s
CI / docker (pull_request) Successful in 1m27s
CI / integration_tests (pull_request) Successful in 8m39s
CI / coverage (pull_request) Successful in 11m1s
CI / status-check (pull_request) Successful in 3s
Add domain-scenario Gherkin tags to all A2A, session, and CLI feature files (30 files) so tests can be filtered individually via behave. - 8 A2A feature files: @a2a tag - 7 session feature files: @session tag - 15 CLI feature files: @cli tag ISSUES CLOSED: #9124
32 lines
1000 B
Gherkin
32 lines
1000 B
Gherkin
@cli
|
|
Feature: CleverAgents CLI metadata
|
|
|
|
Scenario: Display help
|
|
When I run the CleverAgents CLI with "--help"
|
|
Then the output should contain "CleverAgents"
|
|
|
|
Scenario: Display version
|
|
When I run the CleverAgents CLI with "--version"
|
|
Then the output should contain "1.0.0"
|
|
|
|
Scenario: Display diagnostics
|
|
When I run the CleverAgents CLI with "diagnostics"
|
|
Then the output should contain "Checks"
|
|
And the output should contain "Summary"
|
|
|
|
Scenario: Display info
|
|
When I run the CleverAgents CLI with "info"
|
|
Then the output should contain "Environment"
|
|
And the output should contain "Runtime"
|
|
|
|
Scenario Outline: Display help for command groups
|
|
When I run the CleverAgents CLI with "<command> --help"
|
|
Then the exit code should be 0
|
|
And the output should contain "<expected>"
|
|
|
|
Examples:
|
|
| command | expected |
|
|
| project | Project management |
|
|
| context | Context management |
|
|
| plan | Plan operations |
|