should be inclusive (#904)

* should be inclusive

* changed tests due to spans being different
This commit is contained in:
Darren Schroeder
2022-01-31 17:02:36 -06:00
committed by GitHub
parent 4c9df9c7c1
commit c80a15cdfe
2 changed files with 4 additions and 13 deletions

View File

@ -50,26 +50,17 @@ impl Command for SubCommand {
Example {
description: "Format a given date using the given format string.",
example: "date format '%Y-%m-%d'",
result: Some(Value::String {
val: Local::now().format("%Y-%m-%d").to_string(),
span: Span::test_data(),
}),
result: None,
},
Example {
description: "Format a given date using the given format string.",
example: r#"date format "%Y-%m-%d %H:%M:%S""#,
result: Some(Value::String {
val: Local::now().format("%Y-%m-%d %H:%M:%S").to_string(),
span: Span::test_data(),
}),
result: None,
},
Example {
description: "Format a given date using the given format string.",
example: r#""2021-10-22 20:00:12 +01:00" | date format "%Y-%m-%d""#,
result: Some(Value::String {
val: "2021-10-22".into(),
span: Span::test_data(),
}),
result: None,
},
]
}