Skip to content

Commit a50643b

Browse files
committed
perl6 -> raku
1 parent f8da8ad commit a50643b

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

doc/Language/testing.pod6

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ Tests can be run individually by specifying the test filename on the
6969
command line:
7070
7171
=for code :lang<shell>
72-
$ perl6 t/test-filename.t
72+
$ raku t/test-filename.t
7373
7474
To run all tests in the directory recursively,
7575
L<prove6|https://modules.raku.org/dist/App::Prove6> application can
@@ -88,21 +88,21 @@ $ prove6 --lib t/
8888
The C<t/> argument specified directory that contains tests and the
8989
C<--lib> option is passed to include C<lib> directory into Raku
9090
distribution path, it is an equivalent of C<-Ilib> argument of
91-
C<perl6> command.
91+
C<raku> command.
9292
9393
For more documentation regarding C<prove6> usage refer to
9494
L<its page|https://modules.raku.org/dist/App::Prove6>.
9595
9696
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:
9898
9999
=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
101101
102102
The same variable can be used within the test file. Set it before loading
103103
the C<Test> module:
104104
105-
BEGIN %*ENV<PERL6_TEST_DIE_ON_FAIL> = 1;
105+
BEGIN %*ENV<RAKU_TEST_DIE_ON_FAIL> = 1;
106106
use Test;
107107
...
108108
@@ -211,4 +211,4 @@ L<C<diag>|/type/Test#diag> will print a (possibly) informative message.
211211
212212
=end pod
213213

214-
# vim: expandtab softtabstop=4 shiftwidth=4 ft=perl6
214+
# vim: expandtab softtabstop=4 shiftwidth=4 ft=raku

0 commit comments

Comments
 (0)