@@ -51,12 +51,8 @@ L<synopsis S11|https://design.raku.org/S11.html#Units> says: Confusing? Yes it
51
51
is. > , a C < t > directory for tests, and possibly a C < bin > directory for
52
52
executable programs and scripts.
53
53
54
- Source files generally use the C < .rakumod > extension, and scripts or
55
- executables use the C < .raku > . Test files use the C < .rakutest > (or C < .t > )
56
- extension. Files which contain documentation use the C < .rakudoc > extension N « The
57
- old C < .p6 > (or C < .pl6 > ), C < .pm6 > (or C < .pm > which is also supported, but
58
- discouraged) and C < .pod6 > extensions will continue to be supported for 6.e
59
- and marked as B < deprecated > in 6.f » .
54
+ See L < Language/filename-extensions > for current and historic
55
+ extensions for various file types.
60
56
61
57
= head1 X < Loading and basic importing|Language,compunit >
62
58
@@ -632,7 +628,7 @@ control, but it can slow down the installation of popular distributions.
632
628
An alternative to placing the C < meta-ok > test in an extended test directory, but
633
629
to ensure that it is only run when a developer or maintainer wants to, is to
634
630
make the test dependent on an environment variable, e.g., in
635
- C < t/99-author-test.t > there is the following code
631
+ C < t/99-author-test.rakutest > there is the following code
636
632
637
633
= begin code
638
634
use Test;
@@ -706,7 +702,7 @@ Vortex-TotalPerspective/
706
702
└── bin
707
703
│ └── vortex
708
704
└── t
709
- └── basic.t
705
+ └── basic.rakutest
710
706
= end code
711
707
712
708
If your project contains other modules that help the main module do
@@ -785,7 +781,7 @@ you should put the license's name in the license field. For more details see
785
781
L < https://design.raku.org/S22.html#license > .
786
782
787
783
= item If you don't yet have any tests, you can leave out the C < t >
788
- directory and C < basic.t > file for now. For more information on how to write
784
+ directory and C < basic.rakutest > file for now. For more information on how to write
789
785
tests (for now), you might have a look at how other modules use
790
786
C < Test > .
791
787
0 commit comments