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