aboutsummaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorPatrick Spek <p.spek@tyil.nl>2020-07-12 08:55:57 +0200
committerPatrick Spek <p.spek@tyil.nl>2020-07-12 08:59:21 +0200
commitb7eac633f2f348751c6a53c56e5eeb7997a2dc73 (patch)
treef634824a058ef526f2e552245eec9d288226c158 /t
parent28e3fa6d3514a560410f514ab8537a2a1206a7f7 (diff)
Update perl6 references to raku
Diffstat (limited to 't')
-rw-r--r--t/02-getting.t2
-rw-r--r--t/03-having.t2
-rw-r--r--t/04-setting.t2
-rw-r--r--t/05-null-parser.t2
-rw-r--r--t/07-keys.t4
-rw-r--r--t/08-unsetting.t.t2
-rw-r--r--t/09-cloning.t4
7 files changed, 9 insertions, 9 deletions
diff --git a/t/02-getting.t b/t/02-getting.t
index 04859e2..b7ffbfe 100644
--- a/t/02-getting.t
+++ b/t/02-getting.t
@@ -1,4 +1,4 @@
-#! /usr/bin/env perl6
+#! /usr/bin/env raku
use v6.c;
use Test;
diff --git a/t/03-having.t b/t/03-having.t
index 50348d0..c1779b0 100644
--- a/t/03-having.t
+++ b/t/03-having.t
@@ -1,4 +1,4 @@
-#! /usr/bin/env perl6
+#! /usr/bin/env raku
use v6.c;
use Test;
diff --git a/t/04-setting.t b/t/04-setting.t
index 96ab7c3..d846af7 100644
--- a/t/04-setting.t
+++ b/t/04-setting.t
@@ -1,4 +1,4 @@
-#! /usr/bin/env perl6
+#! /usr/bin/env raku
use v6.c;
use Test;
diff --git a/t/05-null-parser.t b/t/05-null-parser.t
index 72aedf8..fc3d4b2 100644
--- a/t/05-null-parser.t
+++ b/t/05-null-parser.t
@@ -1,4 +1,4 @@
-#! /usr/bin/env perl6
+#! /usr/bin/env raku
use v6.c;
use Test;
diff --git a/t/07-keys.t b/t/07-keys.t
index ddc4fdf..2ba1762 100644
--- a/t/07-keys.t
+++ b/t/07-keys.t
@@ -1,4 +1,4 @@
-#! /usr/bin/env perl6
+#! /usr/bin/env raku
use v6;
@@ -21,4 +21,4 @@ my @keys = < a b c.a c.b >;
is $c.keys.sort, @keys, ".keys returns a list of all keys";
-# vim: ft=perl6 noet
+# vim: ft=raku noet
diff --git a/t/08-unsetting.t.t b/t/08-unsetting.t.t
index da76164..a13ef36 100644
--- a/t/08-unsetting.t.t
+++ b/t/08-unsetting.t.t
@@ -1,4 +1,4 @@
-#! /usr/bin/env perl6
+#! /usr/bin/env raku
use v6.c;
use Test;
diff --git a/t/09-cloning.t b/t/09-cloning.t
index b13cd7d..0746eff 100644
--- a/t/09-cloning.t
+++ b/t/09-cloning.t
@@ -1,4 +1,4 @@
-#! /usr/bin/env perl6
+#! /usr/bin/env raku
use v6.c;
@@ -18,4 +18,4 @@ my Config $b = $a.clone;
is-deeply $a.get, $b.get, "B contains the same data as A";
isnt $a, $b, "A and B are not the same object";
-# vim: ft=perl6 noet
+# vim: ft=raku noet