mirror of
https://github.com/nushell/nushell
synced 2024-11-10 15:14:14 +00:00
add nth tests to mod.rs (#934)
This commit is contained in:
parent
90f6b6aedf
commit
c2f6dfa75c
2 changed files with 5 additions and 0 deletions
|
@ -34,6 +34,7 @@ mod math;
|
|||
mod merge;
|
||||
mod mkdir;
|
||||
mod move_;
|
||||
mod nth;
|
||||
mod open;
|
||||
mod parse;
|
||||
mod path;
|
||||
|
|
|
@ -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| {
|
||||
|
|
Loading…
Reference in a new issue