diff options
| author | diogo464 <[email protected]> | 2025-06-19 09:06:49 +0100 |
|---|---|---|
| committer | diogo464 <[email protected]> | 2025-06-19 09:06:49 +0100 |
| commit | b7ff8b4b76236d7ceb1abe87d5c1c4ab2cad61bf (patch) | |
| tree | 79cadd7aafacc89e9a9e3ec56a210e463c37c488 /Cargo.toml | |
| parent | 4de1d0ddd589be3bfe2693c6102f9b5464acb8b0 (diff) | |
Add comprehensive CLI tests using assert_cmd
- Add assert_cmd, predicates, and tempfile dev dependencies
- Create 18 comprehensive integration tests covering all CLI commands
- Test success scenarios, error conditions, and edge cases
- Use temporary directories for isolated test environments
- Cover file creation, process management, and cleanup functionality
All tests pass and provide good coverage of the CLI interface.
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <[email protected]>
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 5 |
1 files changed, 5 insertions, 0 deletions
| @@ -11,3 +11,8 @@ glob = "0.3.2" | |||
| 11 | notify = "8.0.0" | 11 | notify = "8.0.0" |
| 12 | tracing = "0.1.41" | 12 | tracing = "0.1.41" |
| 13 | tracing-subscriber = "0.3.19" | 13 | tracing-subscriber = "0.3.19" |
| 14 | |||
| 15 | [dev-dependencies] | ||
| 16 | assert_cmd = "2.0.17" | ||
| 17 | predicates = "3.1.3" | ||
| 18 | tempfile = "3.20.0" | ||
