just/tests
Casey Rodarmor 9731278d2a
Wrap comments at 80 characters (#593)
I think 70 is too agressive, especially since it includes indentation
when determining line length.
2020-02-14 04:49:25 -08:00
..
completions.rs Generate shell completion scripts with --completions (#572) 2020-01-15 01:20:38 -08:00
edit.rs Gargantuan refactor (#522) 2019-11-09 21:43:20 -08:00
init.rs Add missing --init test (#543) 2019-11-20 01:35:29 -06:00
integration.rs Use unstable rustfmt configuration options (#592) 2020-02-10 20:07:06 -08:00
interrupts.rs Gargantuan refactor (#522) 2019-11-09 21:43:20 -08:00
invocation_directory.rs Refactor lexer tests (#498) 2019-10-17 20:04:54 -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
shell.rs Add shell setting (#525) 2019-11-10 23:17:47 -08: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);
  }
}