mirror of
https://github.com/nushell/nushell
synced 2025-01-14 22:24:54 +00:00
8 lines
109 B
Text
8 lines
109 B
Text
|
use std/assert
|
||
|
|
||
|
#[test]
|
||
|
def banner [] {
|
||
|
use std/core
|
||
|
assert ((core banner | lines | length) == 15)
|
||
|
}
|