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 mkdir;
mod move_;
mod nth;
mod open;
mod parse;
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]
fn selects_a_row() {
Playground::setup("nth_test_1", |dirs, sandbox| {