mirror of
https://github.com/nushell/nushell
synced 2024-12-27 21:43:09 +00:00
11 lines
390 B
Text
11 lines
390 B
Text
|
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
|
||
|
}
|