Skip to content

Commit

Permalink
feat: add test crate (#135)
Browse files Browse the repository at this point in the history
  • Loading branch information
prsabahrami authored Sep 17, 2024
1 parent 661f6a3 commit 16b3204
Show file tree
Hide file tree
Showing 15 changed files with 1,374 additions and 1,131 deletions.
120 changes: 104 additions & 16 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
Expand Up @@ -8,4 +8,4 @@ homepage = "https://github.com/prefix-dev/shell"
repository = "https://github.com/prefix-dev/shell"
license = "BSD-3-Clause"
edition = "2021"
readme = "README.md"
readme = "README.md"
4 changes: 2 additions & 2 deletions crates/deno_task_shell/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ pest_ascii_tree = { git = "https://github.com/prsabahrami/pest_ascii_tree.git",
miette = "7.2.0"

[dev-dependencies]
tempfile = "3.12.0"
parking_lot = "0.12.3"
pretty_assertions = "1"
serde_json = "1.0.128"
tempfile = "3.12.0"
pretty_assertions = "1.0.0"
8 changes: 2 additions & 6 deletions crates/deno_task_shell/src/shell/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,9 @@ pub use types::ShellPipeReader;
pub use types::ShellPipeWriter;
pub use types::ShellState;

pub mod fs_util;

mod command;
mod commands;
mod execute;
mod fs_util;
mod types;

#[cfg(test)]
mod test;
#[cfg(test)]
mod test_builder;
Loading

0 comments on commit 16b3204

Please sign in to comment.