nu-std 0.112.1

The standard library of Nushell
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use std/testing *
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
}