add nth tests to mod.rs (#934)

This commit is contained in:
Michael Angerman 2022-02-04 12:08:25 -08:00 committed by GitHub
parent 90f6b6aedf
commit c2f6dfa75c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 0 deletions

View File

@ -34,6 +34,7 @@ mod math;
mod merge; mod merge;
mod mkdir; mod mkdir;
mod move_; mod move_;
mod nth;
mod open; mod open;
mod parse; mod parse;
mod path; mod path;

View File

@ -1,3 +1,7 @@
use nu_test_support::fs::Stub::EmptyFile;
use nu_test_support::playground::Playground;
use nu_test_support::{nu, pipeline};
#[test] #[test]
fn selects_a_row() { fn selects_a_row() {
Playground::setup("nth_test_1", |dirs, sandbox| { Playground::setup("nth_test_1", |dirs, sandbox| {