This is an automatically generated mail to inform you that tests are now
available in t/spec/S02-builtin_data_types/bool.t
commit 73e1a1a4627cb62445ffc7409e755ea71002c05b
Author: jnthn <jn...@c213334d-75ef-0310-aa23-eaa082d1ae64>
Date: Sat Jun 5 20:49:32 2010 +0000
[t/spec] Unfudge tests for RT#65514 and add a couple of extra ones for it
too.
git-svn-id: http://svn.pugscode.org/p...@31133
c213334d-75ef-0310-aa23-eaa082d1ae64
diff --git a/t/spec/S02-builtin_data_types/bool.t
b/t/spec/S02-builtin_data_types/bool.t
index 08c8c27..a402335 100644
--- a/t/spec/S02-builtin_data_types/bool.t
+++ b/t/spec/S02-builtin_data_types/bool.t
@@ -1,6 +1,6 @@
use v6;
use Test;
-plan 37;
+plan 39;
#L<S12/Enumerations/"Two built-in enumerations are">
@@ -67,8 +67,9 @@ is(--$bool, Bool::False, 'Decrement of Bool::False produces
Bool::False');
# RT #65514
{
- #?rakudo 2 skip 'RT #65514 mix in bool with "but"'
ok (0 but Bool::True), 'Bool::True works with "but"';
+ is (0 but Bool::True), 0, 'Bool::True works with "but"';
+ ok !('RT65514' but Bool::False), 'Bool::False works with "but"';
is ('RT65514' but Bool::False), 'RT65514', 'Bool::False works with "but"';
}