mirror of
https://github.com/nushell/nushell.git
synced 2025-04-29 23:54:26 +02:00
11 lines
414 B
Plaintext
11 lines
414 B
Plaintext
use std/assert
|
|
|
|
#[test]
|
|
def std_pre_import [] {
|
|
# These commands shouldn't exist without an import
|
|
assert length (scope commands | where name == "path add") 0
|
|
assert length (scope commands | where name == "ellie") 0
|
|
assert length (scope commands | where name == "repeat") 0
|
|
assert length (scope commands | where name == "from jsonl") 0
|
|
assert length (scope commands | where name == "datetime-diff") 0
|
|
} |