mirror of
https://github.com/nushell/nushell
synced 2025-01-13 05:38:57 +00:00
7029d24f42
# Description Adds version info to the Startup Banner # User-Facing Changes ## Before ![image](https://github.com/user-attachments/assets/de2a415f-1608-4d87-ab28-f3238cf532c3) ## After ![image](https://github.com/user-attachments/assets/db3f8419-0680-4a0b-9f09-8d9a273c4726) # Tests + Formatting - 🟢 `toolkit fmt` - 🟢 `toolkit clippy` - 🟢 `toolkit test` - 🟢 `toolkit test stdlib` - # After Submitting N/A
7 lines
109 B
Text
7 lines
109 B
Text
use std/assert
|
|
|
|
#[test]
|
|
def banner [] {
|
|
use std/core
|
|
assert ((core banner | lines | length) == 16)
|
|
}
|