mirror of
https://github.com/nushell/nushell.git
synced 2025-05-02 00:54:25 +02:00
11 lines
379 B
Plaintext
11 lines
379 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 == "from jsonl") 1
|
|
assert length (scope commands | where name == "datetime-diff") 1
|
|
} |