mirror of
https://github.com/nushell/nushell.git
synced 2025-05-30 06:39:33 +02:00
15 lines
300 B
Rust
15 lines
300 B
Rust
use crate::repl::tests::{fail_test, run_test_std, TestResult};
|
|
|
|
#[test]
|
|
fn not_loaded() -> TestResult {
|
|
fail_test("log info", "")
|
|
}
|
|
|
|
#[test]
|
|
fn use_command() -> TestResult {
|
|
run_test_std(
|
|
"use ([ std, assert ] | path join); assert true; print 'it works'",
|
|
"it works",
|
|
)
|
|
}
|