just/tests/lib.rs
Casey Rodarmor 77bba3ee0e
Add subsequent dependencies (#820)
Subsequents are dependencies which run after a recipe instead of prior.
Subsequents to a recipe only run if the recipe succeeds. Subsequents
will run even if a matching invocation already ran as a prior
dependencies.
2021-07-22 00:20:25 -07:00

35 lines
488 B
Rust

#[macro_use]
mod test;
mod assert_stdout;
mod assert_success;
mod choose;
mod command;
mod common;
mod completions;
mod conditional;
mod delimiters;
mod dotenv;
mod edit;
mod error_messages;
mod evaluate;
mod examples;
mod export;
mod fmt;
mod functions;
mod init;
mod interrupts;
mod invocation_directory;
mod misc;
mod positional_arguments;
mod quiet;
mod readme;
mod search;
mod shebang;
mod shell;
mod string;
mod sublime_syntax;
mod subsequents;
mod tempdir;
mod working_directory;