mirror of
https://github.com/nushell/nushell
synced 2025-01-05 01:39:02 +00:00
8 lines
148 B
Rust
8 lines
148 B
Rust
|
use nu_test_support::nu;
|
||
|
|
||
|
#[test]
|
||
|
fn const_ceil() {
|
||
|
let actual = nu!("const CEIL = 1.5 | math ceil; $CEIL");
|
||
|
assert_eq!(actual.out, "2");
|
||
|
}
|