@@ -69,7 +69,7 @@ Tests can be run individually by specifying the test filename on the
69
69
command line:
70
70
71
71
= for code :lang<shell>
72
- $ perl6 t/test-filename.t
72
+ $ raku t/test-filename.t
73
73
74
74
To run all tests in the directory recursively,
75
75
L < prove6|https://modules.raku.org/dist/App::Prove6 > application can
@@ -88,21 +88,21 @@ $ prove6 --lib t/
88
88
The C < t/ > argument specified directory that contains tests and the
89
89
C < --lib > option is passed to include C < lib > directory into Raku
90
90
distribution path, it is an equivalent of C < -Ilib > argument of
91
- C < perl6 > command.
91
+ C < raku > command.
92
92
93
93
For more documentation regarding C < prove6 > usage refer to
94
94
L < its page|https://modules.raku.org/dist/App::Prove6 > .
95
95
96
96
To abort the test suite upon first failure, set the
97
- C < PERL6_TEST_DIE_ON_FAIL > environmental variable:
97
+ C < RAKU_TEST_DIE_ON_FAIL > environmental variable:
98
98
99
99
= for code :lang<shell>
100
- $ PERL6_TEST_DIE_ON_FAIL =1 perl6 t/test-filename.t
100
+ $ RAKU_TEST_DIE_ON_FAIL =1 raku t/test-filename.t
101
101
102
102
The same variable can be used within the test file. Set it before loading
103
103
the C < Test > module:
104
104
105
- BEGIN %*ENV < PERL6_TEST_DIE_ON_FAIL > = 1;
105
+ BEGIN %*ENV < RAKU_TEST_DIE_ON_FAIL > = 1;
106
106
use Test;
107
107
...
108
108
@@ -211,4 +211,4 @@ L<C<diag>|/type/Test#diag> will print a (possibly) informative message.
211
211
212
212
= end pod
213
213
214
- # vim: expandtab softtabstop=4 shiftwidth=4 ft=perl6
214
+ # vim: expandtab softtabstop=4 shiftwidth=4 ft=raku
0 commit comments