Skip to content

Commit

Permalink
add junit-mock utility (#97)
Browse files Browse the repository at this point in the history
  • Loading branch information
dfrankland authored Sep 17, 2024
1 parent 6b00566 commit 0406f39
Show file tree
Hide file tree
Showing 5 changed files with 620 additions and 6 deletions.
125 changes: 120 additions & 5 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[workspace]
members = ["cli", "codeowners"]
members = ["cli", "codeowners", "junit-mock"]
resolver = "2"

[profile.release]
Expand Down
21 changes: 21 additions & 0 deletions junit-mock/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
[package]
name = "junit-mock"
version = "0.1.0"
edition = "2021"

[[bin]]
name = "junit-mock"
path = "src/main.rs"

[lib]
name = "junit_mock"
path = "src/lib.rs"

[dependencies]
anyhow = "1.0.44"
chrono = { version = "0.4.33" }
clap = { version = "4.4.18", features = ["derive", "env"] }
fake = "2.9.2"
humantime = "2.1.0"
quick-junit = "0.5.0"
rand = "0.8.5"
Loading

0 comments on commit 0406f39

Please sign in to comment.