You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A [Nushell](https://www.nushell.sh) test framework.
10
10
11
-

11
+

12
12
13
13
*^ Tests are structured data that can be processed just like any other table.*
14
14
15
-

15
+

16
16
17
17
*^ Terminal mode - test results appear as they complete.*
18
18
@@ -36,8 +36,8 @@ Note: Nu-test is fully functional but currently still in pre-1.0 development.
36
36
First-time installation:
37
37
38
38
```nushell
39
-
git https://github.com/vyadh/nu-test.git
40
-
nupm install nu-test --path
39
+
git https://github.com/vyadh/nutest.git
40
+
nupm install nutest --path
41
41
```
42
42
43
43
Usage:
@@ -53,8 +53,8 @@ nutest run-tests
53
53
First-time installation:
54
54
55
55
```nushell
56
-
git https://github.com/vyadh/nu-test.git
57
-
cp -r nu-test/nutest <a directory referenced by NU_LIB_DIRS / $env.NU_LIB_DIRS>
56
+
git https://github.com/vyadh/nutest.git
57
+
cp -r nutest/nutest <a directory referenced by NU_LIB_DIRS / $env.NU_LIB_DIRS>
58
58
```
59
59
60
60
Usage:
@@ -70,7 +70,7 @@ nutest run-tests
70
70
71
71
### Test Suites
72
72
73
-
A recognised test suite (a Nushell file containing tests) is recognised by nu-test is defined as a filename matching one of the following patterns somewhere within the path:
73
+
A recognised test suite (a Nushell file containing tests) is recognised by nutest is defined as a filename matching one of the following patterns somewhere within the path:
74
74
-`test_*.nu`
75
75
-`test-*.nu`
76
76
-`*_test.nu`
@@ -202,7 +202,7 @@ Typing the following and pressing tab will show all available tests that contain
202
202
run-tests --match-tests parse<tab>
203
203
```
204
204
205
-
While test discovery is done concurrently and quick even with many test files, you can specify `--match-suites <pattern>` before `--match-tests` to greatly reduce the amount of work nu-test needs to do to find the tests you want to run.
205
+
While test discovery is done concurrently and quick even with many test files, you can specify `--match-suites <pattern>` before `--match-tests` to greatly reduce the amount of work nutest needs to do to find the tests you want to run.
0 commit comments