mirror of
https://github.com/nushell/nushell.git
synced 2024-12-12 18:20:55 +01:00
8 lines
109 B
Plaintext
8 lines
109 B
Plaintext
|
use std/assert
|
||
|
|
||
|
#[test]
|
||
|
def banner [] {
|
||
|
use std/core
|
||
|
assert ((core banner | lines | length) == 15)
|
||
|
}
|