mirror of
https://github.com/nushell/nushell.git
synced 2025-04-26 22:28:19 +02:00
`std/core` is always loaded by Nushell during startup, and the commands in it are always available. As such, it's renamed `std/prelude`. `scope modules` and `view files` now show `prelude` in place of `core`.
8 lines
115 B
Plaintext
8 lines
115 B
Plaintext
use std/assert
|
|
|
|
#[test]
|
|
def banner [] {
|
|
use std/prelude
|
|
assert ((prelude banner | lines | length) == 16)
|
|
}
|