just/tests
2021-06-08 01:01:27 -07:00
..
choose.rs Allow choosing multiple recipes to run (#700) 2020-10-10 17:54:58 -07:00
command.rs Add --fmt subcommand (#837) 2021-06-08 01:01:27 -07:00
common.rs Add the --command subcommand (#824) 2021-05-10 03:35:35 +00:00
completions.rs Don't require justfile to print completions (#596) 2020-02-20 06:07:25 -08:00
conditional.rs Add --fmt subcommand (#837) 2021-06-08 01:01:27 -07:00
delimiters.rs Allow ignore line endings inside delimiters (#717) 2020-10-27 23:51:17 -07:00
dotenv.rs Remove dotenv_load from tests (#853) 2021-06-03 01:12:39 -04:00
edit.rs Add the --choose subcommand (#680) 2020-09-17 19:43:04 -07:00
error_messages.rs Add conditional expressions (#714) 2020-10-26 18:16:42 -07:00
evaluate.rs Change --eval to print variable value only (#806) 2021-04-25 17:02:57 -07:00
examples.rs Test that example justfiles successfully parse (#643) 2020-06-09 22:57:16 -07:00
export.rs Add dotenv-load setting (#778) 2021-03-28 22:38:07 -07:00
fmt.rs Add --fmt subcommand (#837) 2021-06-08 01:01:27 -07:00
init.rs Add missing --init test (#543) 2019-11-20 01:35:29 -06:00
interrupts.rs Add the --command subcommand (#824) 2021-05-10 03:35:35 +00:00
invocation_directory.rs Note shebang line splitting inconsistency in readme (#757) 2021-02-15 01:18:31 -08:00
lib.rs Add --fmt subcommand (#837) 2021-06-08 01:01:27 -07:00
misc.rs Add --fmt subcommand (#837) 2021-06-08 01:01:27 -07:00
positional_arguments.rs Pass evaluated arguments as positional arguments (#810) 2021-05-02 10:25:43 +00:00
quiet.rs Turn = deprecation warning into a hard error (#780) 2021-03-28 23:39:23 -07:00
readme.rs Reform positional argument parsing (#523) 2019-11-10 18:02:36 -08:00
search.rs Reform positional argument parsing (#523) 2019-11-10 18:02:36 -08:00
shebang.rs Add shebang support for 'cmd.exe' (#828) 2021-05-16 00:33:41 -05:00
shell.rs Improve install script (#847) 2021-05-27 23:16:45 -07:00
string.rs Reform and improve string literals (#793) 2021-04-05 21:28:37 -07:00
test.rs Add --fmt subcommand (#837) 2021-06-08 01:01:27 -07:00
working_directory.rs Wrap comments at 80 characters (#593) 2020-02-14 04:49:25 -08:00

use std::{fs, process::Command};

use executable_path::executable_path;
use test_utilities::{assert_success, tempdir};

#[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);
  }
}