mirror of
https://github.com/nushell/nushell.git
synced 2024-11-25 01:43:47 +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)
|
||
|
}
|