Move unit test runner to standard library (#8850)

Move test runner to standard library.
Originated from #8819 

# After Submitting

I'll update the documentation about testing:
http://www.nushell.sh/book/testing.html

---------

Co-authored-by: Mate Farkas <Mate.Farkas@oneidentity.com>
This commit is contained in:
Máté FARKAS
2023-04-13 21:46:37 +02:00
committed by GitHub
parent b4400c4896
commit b2d7427d2d
9 changed files with 394 additions and 389 deletions

View File

@ -71,11 +71,11 @@ pub fn load_standard_library(
let submodules = vec![
// helper modules that could be used in other parts of the library
("log", include_str!("../lib/log.nu")),
("assert", include_str!("../lib/assert.nu")),
// the rest of the library
("dirs", include_str!("../lib/dirs.nu")),
("help", include_str!("../lib/help.nu")),
("testing", include_str!("../lib/testing.nu")),
("xml", include_str!("../lib/xml.nu")),
];