nu 0.112.2

A new type of shell
1
2
3
4
5
6
7
8
9
10
11
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")
}