just/tests
2024-07-15 13:08:28 -07:00
..
completions Don't check in auto-generated completion scripts (#2120) 2024-06-01 23:26:41 +00:00
allow_duplicate_recipes.rs
allow_duplicate_variables.rs
assert_stdout.rs Add invocation_directory_native() (#1507) 2023-01-13 19:03:14 +00:00
assert_success.rs
assertions.rs
assignment.rs
attributes.rs
backticks.rs
byte_order_mark.rs
changelog.rs Stabilize fallback (#1471) 2023-01-04 06:31:56 +00:00
choose.rs
command.rs
completions.rs Release 1.29.0 (#2155) 2024-06-14 02:57:12 +00:00
conditional.rs Use box-drawing characters in error messages (#1798) 2023-12-29 21:25:30 +00:00
confirm.rs Allow setting custom confirm prompt (#1834) 2024-01-13 02:44:13 +00:00
constants.rs
datetime.rs
delimiters.rs Use box-drawing characters in error messages (#1798) 2023-12-29 21:25:30 +00:00
directories.rs
dotenv.rs Load environment file from dotenv-path relative to working directory (#2152) 2024-06-13 20:21:00 +00:00
edit.rs
equals.rs Do use super::*; instead of use crate::common::*; (#1239) 2022-06-19 04:56:31 +00:00
error_messages.rs
evaluate.rs
examples.rs
export.rs
fallback.rs
fmt.rs
functions.rs Stabilize modules (#2250) 2024-07-14 21:22:03 +00:00
global.rs
groups.rs
ignore_comments.rs
imports.rs
init.rs
interrupts.rs Downgrade to TLS 1.2 in install script (#1536) 2023-01-27 02:49:03 +00:00
invocation_directory.rs
json.rs
lib.rs
line_prefixes.rs Do use super::*; instead of use crate::common::*; (#1239) 2022-06-19 04:56:31 +00:00
list.rs Stabilize modules (#2250) 2024-07-14 21:22:03 +00:00
man.rs
misc.rs
modules.rs
multibyte_char.rs
newline_escape.rs
no_aliases.rs
no_cd.rs Add [no-cd] attribute (#1400) 2022-11-02 23:37:35 -07:00
no_dependencies.rs
no_exit_message.rs Allow [doc] annotation on modules (#2247) 2024-07-14 22:15:22 -07:00
os_attributes.rs
parser.rs
positional_arguments.rs
private.rs
quiet.rs Add set quiet and [no-quiet] (#1704) 2024-01-12 20:38:23 +00:00
quote.rs Stabilize fallback (#1471) 2023-01-04 06:31:56 +00:00
readme.rs
recursion_limit.rs
regexes.rs
run.rs
search_arguments.rs
search.rs
shadowing_parameters.rs
shebang.rs Use --command-color when printing shebang recipe commands (#1911) 2024-05-15 00:53:59 +00:00
shell_expansion.rs
shell.rs
show.rs
slash_operator.rs
string.rs
subsequents.rs Use box-drawing characters in error messages (#1798) 2023-12-29 21:25:30 +00:00
summary.rs
tempdir.rs
test.rs
timestamps.rs
undefined_variables.rs
unexport.rs
unstable.rs
windows_shell.rs
windows.rs
working_directory.rs

use super::*;

#[test]
fn readme() {
  let mut justfiles = Vec::new();
  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);
  }
}