aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authordiogo464 <[email protected]>2025-06-19 09:06:49 +0100
committerdiogo464 <[email protected]>2025-06-19 09:06:49 +0100
commitb7ff8b4b76236d7ceb1abe87d5c1c4ab2cad61bf (patch)
tree79cadd7aafacc89e9a9e3ec56a210e463c37c488 /Cargo.toml
parent4de1d0ddd589be3bfe2693c6102f9b5464acb8b0 (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.toml5
1 files changed, 5 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml
index f22a42a..ee3e226 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -11,3 +11,8 @@ glob = "0.3.2"
11notify = "8.0.0" 11notify = "8.0.0"
12tracing = "0.1.41" 12tracing = "0.1.41"
13tracing-subscriber = "0.3.19" 13tracing-subscriber = "0.3.19"
14
15[dev-dependencies]
16assert_cmd = "2.0.17"
17predicates = "3.1.3"
18tempfile = "3.20.0"