mirror of
https://github.com/nushell/nushell
synced 2024-12-28 14:03:09 +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)
|
||
|
}
|