just/tests
2024-02-11 20:56:04 +00:00
..
completions
allow_duplicate_recipes.rs
assert_stdout.rs
assert_success.rs
assignment.rs
attributes.rs
byte_order_mark.rs
changelog.rs
choose.rs
command.rs
completions.rs
conditional.rs Use box-drawing characters in error messages (#1798) 2023-12-29 21:25:30 +00:00
confirm.rs
delimiters.rs
directories.rs
dotenv.rs Use unlikely-to-be-set variable name in env tests (#1882) 2024-01-27 02:10:33 +00:00
edit.rs Clean up error display (#1699) 2023-10-16 20:18:25 -07:00
equals.rs
error_messages.rs
evaluate.rs
examples.rs
export.rs Add dotenv-load setting (#778) 2021-03-28 22:38:07 -07:00
fallback.rs
fmt.rs
functions.rs
ignore_comments.rs
imports.rs
init.rs Add invocation_directory_native() (#1507) 2023-01-13 19:03:14 +00:00
interrupts.rs
invocation_directory.rs Add just_pid function (#1833) 2024-01-12 03:22:27 +00:00
json.rs
lib.rs
line_prefixes.rs
misc.rs
modules.rs
multibyte_char.rs
newline_escape.rs
no_cd.rs
no_dependencies.rs
no_exit_message.rs
os_attributes.rs Add OS Configuration Attributes (#1387) 2022-10-31 00:52:03 -07:00
parser.rs
positional_arguments.rs Pass evaluated arguments as positional arguments (#810) 2021-05-02 10:25:43 +00:00
private.rs
quiet.rs
quote.rs
readme.rs
recursion_limit.rs
regexes.rs Do use super::*; instead of use crate::common::*; (#1239) 2022-06-19 04:56:31 +00:00
run.rs Stabilize fallback (#1471) 2023-01-04 06:31:56 +00:00
search_arguments.rs
search.rs
shadowing_parameters.rs
shebang.rs Convert run_shebang into integration test (#1880) 2024-01-26 13:05:32 -08:00
shell.rs Misc fixes (#1700) 2023-10-17 03:07:09 +00:00
show.rs Use box-drawing characters in error messages (#1798) 2023-12-29 21:25:30 +00:00
slash_operator.rs Use box-drawing characters in error messages (#1798) 2023-12-29 21:25:30 +00:00
string.rs Use box-drawing characters in error messages (#1798) 2023-12-29 21:25:30 +00:00
subsequents.rs
summary.rs Print submodule recipes in --summary (#1794) 2023-12-29 03:06:48 +00:00
tempdir.rs
test.rs
undefined_variables.rs
unstable.rs Allow unstable features to be enabled with environment variable (#1588) 2023-10-09 03:47:20 +00:00
windows_shell.rs Fix spelling (#1463) 2022-12-30 20:36:08 +00:00
working_directory.rs Placate clippy (#1423) 2022-11-23 00:36:23 +00:00

use super::*;

#[test]
fn readme() {
  let mut justfiles = vec![];
  let mut current = None;

  for line in fs::read_to_string("README.md").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 == "```just" {
      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);
  }
}