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
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
}