forked from extern/nushell
should be inclusive (#904)
* should be inclusive * changed tests due to spans being different
This commit is contained in:
parent
4c9df9c7c1
commit
c80a15cdfe
@ -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,
|
||||
},
|
||||
]
|
||||
}
|
||||
|
@ -84,7 +84,7 @@ fn integer(
|
||||
Some(Ordering::Equal) => Ok(PipelineData::Value(Value::Int { val: min, span }, None)),
|
||||
_ => {
|
||||
let mut thread_rng = thread_rng();
|
||||
let result: i64 = thread_rng.gen_range(min..max);
|
||||
let result: i64 = thread_rng.gen_range(min..=max);
|
||||
|
||||
Ok(PipelineData::Value(Value::Int { val: result, span }, None))
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user