mirror of
https://github.com/nushell/nushell.git
synced 2025-05-08 12:04:25 +02: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)
|
|
}
|