Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
pugs autounfudge
  • Loading branch information
coke committed Feb 24, 2012
1 parent 7d89666 commit 221ae65
Show file tree
Hide file tree
Showing 5 changed files with 2 additions and 7 deletions.
1 change: 0 additions & 1 deletion S02-literals/radix.t
Expand Up @@ -193,7 +193,6 @@ is( :2<1.1> * :2<10> ** :2<10>, 6, 'multiplication and exponentiatio
# L<S02/General radices/"Alternately you can use a list of digits in decimal">
#?rakudo skip ":radix[] NYI"
#?niecza skip ":radix[] NYI"
#?pugs skip "todo"
{
is( :60[12,34,56], 12 * 3600 + 34 * 60 + 56, 'List of numbers works' );
is( :100[3,'.',14,16], 3.1416, 'Decimal point in list works' );
Expand Down
1 change: 0 additions & 1 deletion S03-operators/value_equivalence.t
Expand Up @@ -179,7 +179,6 @@ plan 74;

#?pugs skip "this test alters # of run tests?"
ok 1|2 === 1, '=== does autothread (1)';
#?pugs skip "this test alters # of run tests?"
isa_ok 1|2 === 1, Junction, '=== does autothread (2)';

done;
Expand Down
2 changes: 0 additions & 2 deletions S05-modifier/perl5_8.t
Expand Up @@ -101,9 +101,7 @@ is(("a0-za" ~~ rx:P5/([\d-z]+)/ && $0), "0-z", 're_tests 1155/1 (1359)');
is(("a0- z" ~~ rx:P5/([\d-\s]+)/ && $0), "0- ", 're_tests 1157/1 (1361)');
#?pugs skip "PCRE hard parsefail"
is(("za-9z" ~~ rx:P5/([a-[:digit:]]+)/ && $0), "a-9", 're_tests 1159/1 (1363)');
#?pugs skip "PCRE hard parsefail"
is(("=0-z=" ~~ rx:P5/([[:digit:]-z]+)/ && $0), "0-z", 're_tests 1160/1 (1364)');
#?pugs skip "PCRE hard parsefail"
is(("=0-z=" ~~ rx:P5/([[:digit:]-[:alpha:]]+)/ && $0), "0-z", 're_tests 1161/1 (1365)');
ok((not ("aaaXbX" ~~ rx:P5/\GX.*X/)), 're_tests 1162 (1366)');
is(("3.1415926" ~~ rx:P5/(\d+\.\d+)/ && $0), "3.1415926", 're_tests 1163/1 (1367)');
Expand Down
4 changes: 2 additions & 2 deletions S32-str/chop.t
Expand Up @@ -42,9 +42,9 @@ XXX: chop(%has) should return a hash of chopped strings?
my ($a, $b) = ("bar", "gorch");
#?pugs skip "todo"
is(chop($a, $b), "h", "two chars removed, second returned");
#?pugs skip "todo"
#?pugs todo "todo"
is($a, "ba", "first string");
#?pugs skip "todo"
#?pugs todo "todo"
is($b, "gorc", "second string");
};

Expand Down
1 change: 0 additions & 1 deletion S32-temporal/time.t
Expand Up @@ -156,7 +156,6 @@ ok(is_dt({ my $str = localtime() }()), 'localtime(), scalar context');

if ($localyday && $yday) {
my $day_diff = $localyday - $yday;
#?pugs todo
ok($day_diff == 0 ||
$day_diff == 1 ||
$day_diff == -1 ||
Expand Down

0 comments on commit 221ae65

Please sign in to comment.