mirror of
https://github.com/nushell/nushell.git
synced 2025-01-22 14:18:55 +01:00
11 lines
390 B
Plaintext
11 lines
390 B
Plaintext
|
use std/assert
|
||
|
export use std *
|
||
|
|
||
|
#[test]
|
||
|
def std_post_import [] {
|
||
|
assert length (scope commands | where name == "path add") 1
|
||
|
assert length (scope commands | where name == "ellie") 1
|
||
|
assert length (scope commands | where name == "repeat") 1
|
||
|
assert length (scope commands | where name == "formats from jsonl") 1
|
||
|
assert length (scope commands | where name == "dt datetime-diff") 1
|
||
|
}
|