2018-12-15 05:57:40 +00:00
|
|
|
extern crate chrono;
|
|
|
|
|
|
|
|
use common::util::*;
|
|
|
|
use std::fs::metadata;
|
|
|
|
use test_pr::chrono::offset::Local;
|
2018-12-29 08:40:43 +00:00
|
|
|
use test_pr::chrono::DateTime;
|
2018-12-15 05:57:40 +00:00
|
|
|
|
|
|
|
fn file_last_modified_time(ucmd: &UCommand, path: &str) -> String {
|
|
|
|
let tmp_dir_path = ucmd.get_full_fixture_path(path);
|
|
|
|
let file_metadata = metadata(tmp_dir_path);
|
2018-12-29 08:40:43 +00:00
|
|
|
return file_metadata
|
|
|
|
.map(|i| {
|
|
|
|
return i
|
|
|
|
.modified()
|
|
|
|
.map(|x| {
|
|
|
|
let datetime: DateTime<Local> = x.into();
|
|
|
|
datetime.format("%b %d %H:%M %Y").to_string()
|
|
|
|
})
|
|
|
|
.unwrap_or(String::new());
|
|
|
|
})
|
|
|
|
.unwrap_or(String::new());
|
2018-12-15 05:57:40 +00:00
|
|
|
}
|
|
|
|
|
2018-12-22 07:00:10 +00:00
|
|
|
fn now_time() -> String {
|
|
|
|
Local::now().format("%b %d %H:%M %Y").to_string()
|
|
|
|
}
|
|
|
|
|
2018-12-15 05:57:40 +00:00
|
|
|
#[test]
|
2018-12-15 06:04:05 +00:00
|
|
|
fn test_without_any_options() {
|
2018-12-15 05:57:40 +00:00
|
|
|
let test_file_path = "test_one_page.log";
|
2018-12-15 17:24:01 +00:00
|
|
|
let expected_test_file_path = "test_one_page.log.expected";
|
2018-12-15 05:57:40 +00:00
|
|
|
let mut scenario = new_ucmd!();
|
|
|
|
let value = file_last_modified_time(&scenario, test_file_path);
|
|
|
|
scenario
|
2018-12-15 17:24:01 +00:00
|
|
|
.args(&[test_file_path])
|
2018-12-15 05:57:40 +00:00
|
|
|
.succeeds()
|
2018-12-29 08:40:43 +00:00
|
|
|
.stdout_is_templated_fixture(
|
|
|
|
expected_test_file_path,
|
|
|
|
vec![(&"{last_modified_time}".to_string(), &value)],
|
|
|
|
);
|
2018-12-15 17:24:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_with_numbering_option() {
|
|
|
|
let test_file_path = "test_num_page.log";
|
|
|
|
let expected_test_file_path = "test_num_page.log.expected";
|
|
|
|
let mut scenario = new_ucmd!();
|
|
|
|
let value = file_last_modified_time(&scenario, test_file_path);
|
|
|
|
scenario
|
|
|
|
.args(&["-n", test_file_path])
|
|
|
|
.succeeds()
|
2018-12-29 08:40:43 +00:00
|
|
|
.stdout_is_templated_fixture(
|
|
|
|
expected_test_file_path,
|
|
|
|
vec![(&"{last_modified_time}".to_string(), &value)],
|
|
|
|
);
|
2018-12-15 17:24:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_with_numbering_option_when_content_is_less_than_page() {
|
|
|
|
let test_file_path = "test_num_page_less_content.log";
|
|
|
|
let expected_test_file_path = "test_num_page_less_content.log.expected";
|
|
|
|
let mut scenario = new_ucmd!();
|
|
|
|
let value = file_last_modified_time(&scenario, test_file_path);
|
|
|
|
scenario
|
|
|
|
.args(&["-n", test_file_path])
|
|
|
|
.succeeds()
|
2018-12-29 08:40:43 +00:00
|
|
|
.stdout_is_templated_fixture(
|
|
|
|
expected_test_file_path,
|
|
|
|
vec![(&"{last_modified_time}".to_string(), &value)],
|
|
|
|
);
|
2018-12-15 17:24:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_with_numbering_option_with_number_width() {
|
|
|
|
let test_file_path = "test_num_page.log";
|
|
|
|
let expected_test_file_path = "test_num_page_2.log.expected";
|
|
|
|
let mut scenario = new_ucmd!();
|
|
|
|
let value = file_last_modified_time(&scenario, test_file_path);
|
|
|
|
scenario
|
|
|
|
.args(&["-n", "2", test_file_path])
|
|
|
|
.succeeds()
|
2018-12-29 08:40:43 +00:00
|
|
|
.stdout_is_templated_fixture(
|
|
|
|
expected_test_file_path,
|
|
|
|
vec![(&"{last_modified_time}".to_string(), &value)],
|
|
|
|
);
|
2018-12-15 17:24:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_with_header_option() {
|
|
|
|
let test_file_path = "test_one_page.log";
|
|
|
|
let expected_test_file_path = "test_one_page_header.log.expected";
|
|
|
|
let mut scenario = new_ucmd!();
|
|
|
|
let value = file_last_modified_time(&scenario, test_file_path);
|
|
|
|
let header = "new file";
|
|
|
|
scenario
|
|
|
|
.args(&["-h", header, test_file_path])
|
|
|
|
.succeeds()
|
2018-12-29 08:40:43 +00:00
|
|
|
.stdout_is_templated_fixture(
|
|
|
|
expected_test_file_path,
|
|
|
|
vec![
|
|
|
|
(&"{last_modified_time}".to_string(), &value),
|
|
|
|
(&"{header}".to_string(), &header.to_string()),
|
|
|
|
],
|
|
|
|
);
|
2018-12-15 17:24:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_with_long_header_option() {
|
|
|
|
let test_file_path = "test_one_page.log";
|
|
|
|
let expected_test_file_path = "test_one_page_header.log.expected";
|
|
|
|
let mut scenario = new_ucmd!();
|
|
|
|
let value = file_last_modified_time(&scenario, test_file_path);
|
|
|
|
let header = "new file";
|
|
|
|
scenario
|
|
|
|
.args(&["--header=new file", test_file_path])
|
|
|
|
.succeeds()
|
2018-12-29 08:40:43 +00:00
|
|
|
.stdout_is_templated_fixture(
|
|
|
|
expected_test_file_path,
|
|
|
|
vec![
|
|
|
|
(&"{last_modified_time}".to_string(), &value),
|
|
|
|
(&"{header}".to_string(), &header.to_string()),
|
|
|
|
],
|
|
|
|
);
|
2018-12-15 17:24:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_with_double_space_option() {
|
|
|
|
let test_file_path = "test_one_page.log";
|
|
|
|
let expected_test_file_path = "test_one_page_double_line.log.expected";
|
|
|
|
let mut scenario = new_ucmd!();
|
|
|
|
let value = file_last_modified_time(&scenario, test_file_path);
|
|
|
|
scenario
|
|
|
|
.args(&["-d", test_file_path])
|
|
|
|
.succeeds()
|
2018-12-29 08:40:43 +00:00
|
|
|
.stdout_is_templated_fixture(
|
|
|
|
expected_test_file_path,
|
|
|
|
vec![(&"{last_modified_time}".to_string(), &value)],
|
|
|
|
);
|
2018-12-15 17:24:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_with_long_double_space_option() {
|
|
|
|
let test_file_path = "test_one_page.log";
|
|
|
|
let expected_test_file_path = "test_one_page_double_line.log.expected";
|
|
|
|
let mut scenario = new_ucmd!();
|
|
|
|
let value = file_last_modified_time(&scenario, test_file_path);
|
|
|
|
scenario
|
|
|
|
.args(&["--double-space", test_file_path])
|
|
|
|
.succeeds()
|
2018-12-29 08:40:43 +00:00
|
|
|
.stdout_is_templated_fixture(
|
|
|
|
expected_test_file_path,
|
|
|
|
vec![(&"{last_modified_time}".to_string(), &value)],
|
|
|
|
);
|
2018-12-16 06:23:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_with_first_line_number_option() {
|
|
|
|
let test_file_path = "test_one_page.log";
|
|
|
|
let expected_test_file_path = "test_one_page_first_line.log.expected";
|
|
|
|
let mut scenario = new_ucmd!();
|
|
|
|
let value = file_last_modified_time(&scenario, test_file_path);
|
|
|
|
scenario
|
|
|
|
.args(&["-N", "5", "-n", test_file_path])
|
|
|
|
.succeeds()
|
2018-12-29 08:40:43 +00:00
|
|
|
.stdout_is_templated_fixture(
|
|
|
|
expected_test_file_path,
|
|
|
|
vec![(&"{last_modified_time}".to_string(), &value)],
|
|
|
|
);
|
2018-12-16 06:23:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_with_first_line_number_long_option() {
|
|
|
|
let test_file_path = "test_one_page.log";
|
|
|
|
let expected_test_file_path = "test_one_page_first_line.log.expected";
|
|
|
|
let mut scenario = new_ucmd!();
|
|
|
|
let value = file_last_modified_time(&scenario, test_file_path);
|
|
|
|
scenario
|
|
|
|
.args(&["--first-line-number=5", "-n", test_file_path])
|
|
|
|
.succeeds()
|
2018-12-29 08:40:43 +00:00
|
|
|
.stdout_is_templated_fixture(
|
|
|
|
expected_test_file_path,
|
|
|
|
vec![(&"{last_modified_time}".to_string(), &value)],
|
|
|
|
);
|
2018-12-16 06:23:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_with_number_option_with_custom_separator_char() {
|
|
|
|
let test_file_path = "test_num_page.log";
|
|
|
|
let expected_test_file_path = "test_num_page_char.log.expected";
|
|
|
|
let mut scenario = new_ucmd!();
|
|
|
|
let value = file_last_modified_time(&scenario, test_file_path);
|
|
|
|
scenario
|
|
|
|
.args(&["-nc", test_file_path])
|
|
|
|
.succeeds()
|
2018-12-29 08:40:43 +00:00
|
|
|
.stdout_is_templated_fixture(
|
|
|
|
expected_test_file_path,
|
|
|
|
vec![(&"{last_modified_time}".to_string(), &value)],
|
|
|
|
);
|
2018-12-16 06:23:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_with_number_option_with_custom_separator_char_and_width() {
|
|
|
|
let test_file_path = "test_num_page.log";
|
|
|
|
let expected_test_file_path = "test_num_page_char_one.log.expected";
|
|
|
|
let mut scenario = new_ucmd!();
|
|
|
|
let value = file_last_modified_time(&scenario, test_file_path);
|
|
|
|
scenario
|
|
|
|
.args(&["-nc1", test_file_path])
|
|
|
|
.succeeds()
|
2018-12-29 08:40:43 +00:00
|
|
|
.stdout_is_templated_fixture(
|
|
|
|
expected_test_file_path,
|
|
|
|
vec![(&"{last_modified_time}".to_string(), &value)],
|
|
|
|
);
|
2018-12-16 16:06:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2018-12-16 17:24:09 +00:00
|
|
|
fn test_with_valid_page_ranges() {
|
2018-12-16 16:06:42 +00:00
|
|
|
let test_file_path = "test_num_page.log";
|
|
|
|
let mut scenario = new_ucmd!();
|
|
|
|
scenario
|
|
|
|
.args(&["--pages=20:5", test_file_path])
|
|
|
|
.fails()
|
|
|
|
.stderr_is("pr: invalid --pages argument '20:5'")
|
|
|
|
.stdout_is("");
|
|
|
|
new_ucmd!()
|
|
|
|
.args(&["--pages=1:5", test_file_path])
|
|
|
|
.succeeds();
|
2018-12-29 08:40:43 +00:00
|
|
|
new_ucmd!().args(&["--pages=1", test_file_path]).succeeds();
|
2018-12-16 16:06:42 +00:00
|
|
|
new_ucmd!()
|
|
|
|
.args(&["--pages=-1:5", test_file_path])
|
|
|
|
.fails()
|
|
|
|
.stderr_is("pr: invalid --pages argument '-1:5'")
|
|
|
|
.stdout_is("");
|
|
|
|
new_ucmd!()
|
|
|
|
.args(&["--pages=1:-5", test_file_path])
|
|
|
|
.fails()
|
|
|
|
.stderr_is("pr: invalid --pages argument '1:-5'")
|
|
|
|
.stdout_is("");
|
|
|
|
new_ucmd!()
|
|
|
|
.args(&["--pages=5:1", test_file_path])
|
|
|
|
.fails()
|
|
|
|
.stderr_is("pr: invalid --pages argument '5:1'")
|
|
|
|
.stdout_is("");
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2018-12-16 17:24:09 +00:00
|
|
|
fn test_with_page_range() {
|
2018-12-16 16:06:42 +00:00
|
|
|
let test_file_path = "test.log";
|
|
|
|
let expected_test_file_path = "test_page_range_1.log.expected";
|
|
|
|
let expected_test_file_path1 = "test_page_range_2.log.expected";
|
|
|
|
let mut scenario = new_ucmd!();
|
|
|
|
let value = file_last_modified_time(&scenario, test_file_path);
|
|
|
|
scenario
|
|
|
|
.args(&["--pages=15", test_file_path])
|
|
|
|
.succeeds()
|
2018-12-29 08:40:43 +00:00
|
|
|
.stdout_is_templated_fixture(
|
|
|
|
expected_test_file_path,
|
|
|
|
vec![(&"{last_modified_time}".to_string(), &value)],
|
|
|
|
);
|
2018-12-16 16:06:42 +00:00
|
|
|
new_ucmd!()
|
|
|
|
.args(&["--pages=15:17", test_file_path])
|
|
|
|
.succeeds()
|
2018-12-29 08:40:43 +00:00
|
|
|
.stdout_is_templated_fixture(
|
|
|
|
expected_test_file_path1,
|
|
|
|
vec![(&"{last_modified_time}".to_string(), &value)],
|
|
|
|
);
|
2018-12-16 17:24:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_with_no_header_trailer_option() {
|
|
|
|
let test_file_path = "test_one_page.log";
|
|
|
|
let expected_test_file_path = "test_one_page_no_ht.log.expected";
|
|
|
|
let mut scenario = new_ucmd!();
|
|
|
|
scenario
|
|
|
|
.args(&["-t", test_file_path])
|
|
|
|
.succeeds()
|
|
|
|
.stdout_is_fixture(expected_test_file_path);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_with_page_length_option() {
|
|
|
|
let test_file_path = "test.log";
|
|
|
|
let expected_test_file_path = "test_page_length.log.expected";
|
|
|
|
let expected_test_file_path1 = "test_page_length1.log.expected";
|
|
|
|
let mut scenario = new_ucmd!();
|
|
|
|
let value = file_last_modified_time(&scenario, test_file_path);
|
|
|
|
scenario
|
|
|
|
.args(&["--pages=2:3", "-l", "100", "-n", test_file_path])
|
|
|
|
.succeeds()
|
2018-12-29 08:40:43 +00:00
|
|
|
.stdout_is_templated_fixture(
|
|
|
|
expected_test_file_path,
|
|
|
|
vec![(&"{last_modified_time}".to_string(), &value)],
|
|
|
|
);
|
2018-12-16 17:24:09 +00:00
|
|
|
|
|
|
|
new_ucmd!()
|
|
|
|
.args(&["--pages=2:3", "-l", "5", "-n", test_file_path])
|
|
|
|
.succeeds()
|
|
|
|
.stdout_is_fixture(expected_test_file_path1);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_with_suppress_error_option() {
|
|
|
|
let test_file_path = "test_num_page.log";
|
|
|
|
let mut scenario = new_ucmd!();
|
|
|
|
scenario
|
|
|
|
.args(&["--pages=20:5", "-r", test_file_path])
|
|
|
|
.fails()
|
|
|
|
.stderr_is("")
|
|
|
|
.stdout_is("");
|
|
|
|
}
|
2018-12-22 07:00:10 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_with_stdin() {
|
|
|
|
let expected_file_path = "stdin.log.expected";
|
|
|
|
let mut scenario = new_ucmd!();
|
|
|
|
scenario
|
|
|
|
.pipe_in_fixture("stdin.log")
|
|
|
|
.args(&["--pages=1:2", "-n", "-"])
|
|
|
|
.run()
|
2018-12-29 08:40:43 +00:00
|
|
|
.stdout_is_templated_fixture(
|
|
|
|
expected_file_path,
|
|
|
|
vec![(&"{last_modified_time}".to_string(), &now_time())],
|
|
|
|
);
|
2018-12-22 07:00:10 +00:00
|
|
|
}
|
2018-12-22 07:30:16 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_with_column() {
|
|
|
|
let test_file_path = "column.log";
|
|
|
|
let expected_test_file_path = "column.log.expected";
|
|
|
|
let mut scenario = new_ucmd!();
|
|
|
|
let value = file_last_modified_time(&scenario, test_file_path);
|
|
|
|
scenario
|
|
|
|
.args(&["--pages=3:5", "--column=3", "-n", test_file_path])
|
|
|
|
.succeeds()
|
2018-12-29 08:40:43 +00:00
|
|
|
.stdout_is_templated_fixture(
|
|
|
|
expected_test_file_path,
|
|
|
|
vec![(&"{last_modified_time}".to_string(), &value)],
|
|
|
|
);
|
2018-12-22 07:30:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_with_column_across_option() {
|
|
|
|
let test_file_path = "column.log";
|
|
|
|
let expected_test_file_path = "column_across.log.expected";
|
|
|
|
let mut scenario = new_ucmd!();
|
|
|
|
let value = file_last_modified_time(&scenario, test_file_path);
|
|
|
|
scenario
|
|
|
|
.args(&["--pages=3:5", "--column=3", "-a", "-n", test_file_path])
|
|
|
|
.succeeds()
|
2018-12-29 08:40:43 +00:00
|
|
|
.stdout_is_templated_fixture(
|
|
|
|
expected_test_file_path,
|
|
|
|
vec![(&"{last_modified_time}".to_string(), &value)],
|
|
|
|
);
|
2018-12-22 07:30:16 +00:00
|
|
|
}
|
|
|
|
|
2018-12-22 08:45:50 +00:00
|
|
|
#[test]
|
|
|
|
fn test_with_column_across_option_and_column_separator() {
|
|
|
|
let test_file_path = "column.log";
|
|
|
|
let expected_test_file_path = "column_across_sep.log.expected";
|
|
|
|
let mut scenario = new_ucmd!();
|
|
|
|
let value = file_last_modified_time(&scenario, test_file_path);
|
|
|
|
scenario
|
2018-12-29 08:40:43 +00:00
|
|
|
.args(&[
|
|
|
|
"--pages=3:5",
|
|
|
|
"--column=3",
|
|
|
|
"-s|",
|
|
|
|
"-a",
|
|
|
|
"-n",
|
|
|
|
test_file_path,
|
|
|
|
])
|
2018-12-22 08:45:50 +00:00
|
|
|
.succeeds()
|
2018-12-29 08:40:43 +00:00
|
|
|
.stdout_is_templated_fixture(
|
|
|
|
expected_test_file_path,
|
|
|
|
vec![(&"{last_modified_time}".to_string(), &value)],
|
|
|
|
);
|
2018-12-24 06:29:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_with_mpr() {
|
|
|
|
let test_file_path = "column.log";
|
|
|
|
let test_file_path1 = "hosts.log";
|
|
|
|
let expected_test_file_path = "mpr.log.expected";
|
|
|
|
let expected_test_file_path1 = "mpr1.log.expected";
|
|
|
|
let expected_test_file_path2 = "mpr2.log.expected";
|
|
|
|
new_ucmd!()
|
|
|
|
.args(&["--pages=1:2", "-m", "-n", test_file_path, test_file_path1])
|
|
|
|
.succeeds()
|
2018-12-29 08:40:43 +00:00
|
|
|
.stdout_is_templated_fixture(
|
|
|
|
expected_test_file_path,
|
|
|
|
vec![(&"{last_modified_time}".to_string(), &now_time())],
|
|
|
|
);
|
2018-12-22 08:45:50 +00:00
|
|
|
|
2018-12-24 06:29:12 +00:00
|
|
|
new_ucmd!()
|
|
|
|
.args(&["--pages=2:4", "-m", "-n", test_file_path, test_file_path1])
|
|
|
|
.succeeds()
|
2018-12-29 08:40:43 +00:00
|
|
|
.stdout_is_templated_fixture(
|
|
|
|
expected_test_file_path1,
|
|
|
|
vec![(&"{last_modified_time}".to_string(), &now_time())],
|
|
|
|
);
|
2018-12-24 06:29:12 +00:00
|
|
|
|
|
|
|
new_ucmd!()
|
2018-12-29 08:40:43 +00:00
|
|
|
.args(&[
|
|
|
|
"--pages=1:2",
|
|
|
|
"-l",
|
|
|
|
"100",
|
|
|
|
"-n",
|
|
|
|
"-m",
|
|
|
|
test_file_path,
|
|
|
|
test_file_path1,
|
|
|
|
test_file_path,
|
|
|
|
])
|
2018-12-24 06:29:12 +00:00
|
|
|
.succeeds()
|
2018-12-29 08:40:43 +00:00
|
|
|
.stdout_is_templated_fixture(
|
|
|
|
expected_test_file_path2,
|
|
|
|
vec![(&"{last_modified_time}".to_string(), &now_time())],
|
|
|
|
);
|
2018-12-22 08:45:50 +00:00
|
|
|
}
|
|
|
|
|
2018-12-24 06:29:12 +00:00
|
|
|
#[test]
|
|
|
|
fn test_with_mpr_and_column_options() {
|
|
|
|
let test_file_path = "column.log";
|
|
|
|
new_ucmd!()
|
|
|
|
.args(&["--column=2", "-m", "-n", test_file_path])
|
|
|
|
.fails()
|
|
|
|
.stderr_is("pr: cannot specify number of columns when printing in parallel")
|
|
|
|
.stdout_is("");
|
|
|
|
|
|
|
|
new_ucmd!()
|
|
|
|
.args(&["-a", "-m", "-n", test_file_path])
|
|
|
|
.fails()
|
|
|
|
.stderr_is("pr: cannot specify both printing across and printing in parallel")
|
|
|
|
.stdout_is("");
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_with_offset_space_option() {
|
|
|
|
let test_file_path = "column.log";
|
|
|
|
let expected_test_file_path = "column_spaces_across.log.expected";
|
|
|
|
let mut scenario = new_ucmd!();
|
|
|
|
let value = file_last_modified_time(&scenario, test_file_path);
|
|
|
|
scenario
|
2018-12-29 08:40:43 +00:00
|
|
|
.args(&[
|
|
|
|
"-o",
|
|
|
|
"5",
|
|
|
|
"--pages=3:5",
|
|
|
|
"--column=3",
|
|
|
|
"-a",
|
|
|
|
"-n",
|
|
|
|
test_file_path,
|
|
|
|
])
|
2018-12-24 06:29:12 +00:00
|
|
|
.succeeds()
|
2018-12-29 08:40:43 +00:00
|
|
|
.stdout_is_templated_fixture(
|
|
|
|
expected_test_file_path,
|
|
|
|
vec![(&"{last_modified_time}".to_string(), &value)],
|
|
|
|
);
|
2018-12-24 06:29:12 +00:00
|
|
|
}
|