5995221555
This changes the default value of `dotenv-load` from `true` to `false`. This is a backwards incompatible change, and will require a minor version bump. |
||
---|---|---|
.. | ||
assert_stdout.rs | ||
assert_success.rs | ||
byte_order_mark.rs | ||
changelog.rs | ||
choose.rs | ||
command.rs | ||
common.rs | ||
completions.rs | ||
conditional.rs | ||
delimiters.rs | ||
dotenv.rs | ||
edit.rs | ||
equals.rs | ||
error_messages.rs | ||
evaluate.rs | ||
examples.rs | ||
export.rs | ||
fmt.rs | ||
functions.rs | ||
init.rs | ||
interrupts.rs | ||
invocation_directory.rs | ||
json.rs | ||
lib.rs | ||
line_prefixes.rs | ||
misc.rs | ||
positional_arguments.rs | ||
quiet.rs | ||
quote.rs | ||
readme.rs | ||
regexes.rs | ||
search.rs | ||
shebang.rs | ||
shell.rs | ||
show.rs | ||
string.rs | ||
sublime_syntax.rs | ||
subsequents.rs | ||
tempdir.rs | ||
test.rs | ||
undefined_variables.rs | ||
windows_powershell.rs | ||
working_directory.rs |
use crate::common::*; #[test] fn readme() { let mut justfiles = vec![]; let mut current = None; for line in fs::read_to_string("README.adoc").unwrap().lines() { if let Some(mut justfile) = current { if line == "```" { justfiles.push(justfile); current = None; } else { justfile += line; justfile += "\n"; current = Some(justfile); } } else if line == "```make" { current = Some(String::new()); } } for justfile in justfiles { let tmp = tempdir(); let path = tmp.path().join("justfile"); fs::write(&path, &justfile).unwrap(); let output = Command::new(executable_path("just")) .current_dir(tmp.path()) .arg("--dump") .output() .unwrap(); assert_success(&output); } }