mirror of
https://github.com/nushell/nushell
synced 2024-12-27 05:23:11 +00:00
36 lines
711 B
Rust
36 lines
711 B
Rust
|
use crate::tests::{fail_test, run_test, TestResult};
|
||
|
|
||
|
#[test]
|
||
|
fn library_loaded() -> TestResult {
|
||
|
run_test(
|
||
|
"help std | lines | first 1 | to text",
|
||
|
"std.nu, `used` to load all standard library components",
|
||
|
)
|
||
|
}
|
||
|
|
||
|
#[test]
|
||
|
fn prelude_loaded() -> TestResult {
|
||
|
run_test(
|
||
|
"help assert | lines | first 1 | to text",
|
||
|
"Universal assert command",
|
||
|
)
|
||
|
}
|
||
|
|
||
|
#[test]
|
||
|
fn prelude_run() -> TestResult {
|
||
|
run_test("assert true; print 'it works'", "it works")
|
||
|
}
|
||
|
|
||
|
#[test]
|
||
|
fn not_loaded() -> TestResult {
|
||
|
fail_test("help log info", "")
|
||
|
}
|
||
|
|
||
|
#[test]
|
||
|
fn use_command() -> TestResult {
|
||
|
run_test(
|
||
|
"use std 'log info'; log info 'this is some information'",
|
||
|
"",
|
||
|
)
|
||
|
}
|