forked from cleveragents/cleveragents-core
22 lines
758 B
Gherkin
22 lines
758 B
Gherkin
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 "CleverAgents Diagnostics"
|
|
And the output should contain "Version:"
|
|
And the output should contain "Python:"
|
|
And the output should contain "Platform:"
|
|
|
|
Scenario: Display info
|
|
When I run the CleverAgents CLI with "info"
|
|
Then the output should contain "CleverAgents Information"
|
|
And the output should contain "Version: 1.0.0"
|