Skip to content

Commit 1c35b89

Browse files
authored
Add information regardig Raku Programming Language (#180)
And remove references to Perl 6 from the Perl page
1 parent c81213b commit 1c35b89

File tree

3 files changed

+17
-14
lines changed

3 files changed

+17
-14
lines changed

testing-with-tap/index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,6 @@ How do you do TAP based testing with (insert language of choice here)?
1111
- [Testing with Forth](/testing-with-tap/forth.html)
1212
- [Testing with PHP](/testing-with-tap/php.html)
1313
- [Testing with Perl](/testing-with-tap/perl.html)
14+
- [Testing with Raku](/testing-with-tap/raku.html)
1415
- [Testing with Ruby](/testing-with-tap/ruby.html)
1516
- [Testing with Java](/testing-with-tap/java.html)

testing-with-tap/perl.md

Lines changed: 1 addition & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -5,28 +5,15 @@ title: Testing with TAP
55

66
# Testing with Perl
77

8-
## Testing with Perl 5
9-
108
There are a number of test modules for Perl, ranging from very simple tests through to very complex tests.
119
Here are some links to some of them; all of these use the Test Anything Protocol to report their successes or failures:
1210

1311
- [Test::Simple](https://metacpan.org/pod/Test::Simple)
1412
- [Test::More](https://metacpan.org/pod/Test::More)
1513
- [Test::Exception](https://metacpan.org/pod/Test::Exception)
1614

17-
### A number of harnesses are available including:
15+
## A number of harnesses are available including:
1816

1917
- [TAP::Harness](https://metacpan.org/pod/TAP::Harness)
2018

2119
[TAP::Parser Cookbook](/testing-with-tap/perl/tap-parser-cookbook.html) - Cooking with TAP
22-
23-
## Testing with Perl 6
24-
25-
A set of test files, designed to output TAP, are used to define the specification for Perl 6.
26-
Only a few modules exist, but Test is a core module for every implementation that produces Test Anything Protocol output.
27-
28-
- [Test](http://design.perl6.org/S24.html)
29-
30-
### Perl 6 Harnesses
31-
32-
- [Test::Harness](https://github.com/tadzik/Test-Harness/) (incomplete)

testing-with-tap/raku.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
---
2+
layout: default
3+
title: Testing with TAP
4+
---
5+
6+
# Testing with Raku
7+
8+
A set of test files, designed to output TAP, are used to define the specification for Raku.
9+
`Test` is a core module for every implementation that produces Test Anything Protocol output.
10+
11+
- [Test](https://docs.raku.org/type/Test)
12+
13+
### Raku Harnesses
14+
15+
- [App::Prove6](https://raku.land/cpan:LEONT/App::Prove6)

0 commit comments

Comments
 (0)