Skip to content

Commit 2d20b19

Browse files
committed
pugs fudge
1 parent 31d14e7 commit 2d20b19

File tree

4 files changed

+0
-6
lines changed

4 files changed

+0
-6
lines changed

S02-names-vars/varnames.t

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,7 @@ plan 8;
66

77
# L<S02/Names and Variables/special variables of Perl 5 are going away>
88

9-
#?pugs todo
109
eval_lives_ok 'my $!', '$! can be declared again';
11-
#?pugs todo
1210
eval_lives_ok 'my $/', 'as can $/';
1311

1412
#?niecza todo

S09-autovivification/autovivification.t

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,6 @@ plan 42;
6060

6161
#RT #84000
6262
#?niecza skip 'Unable to resolve method push in class Any'
63-
#?pugs todo
6463
{
6564
my %hash;
6665

S12-class/basic.t

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,6 @@ ok(One::Two.new, 'created One::Two after One::Two::Three');
102102
dies_ok { eval 'class One::Two { }' }, 'cannot redeclare an existing class';
103103
eval_lives_ok q[BEGIN {class Level1::Level2::Level3 {};}; class Level1::Level2 {};], 'RT 62898';
104104

105-
#?pugs todo
106105
#?niecza skip "Methods must be used in some kind of package"
107106
{
108107
class A61354_1 {

S32-str/flip.t

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ use Test;
66
plan 13;
77

88
# As a function :
9-
#?pugs skip 'sub NYI'
109
is( flip('Pugs'), 'sguP', "as a function");
1110

1211
# As a method :
@@ -35,7 +34,6 @@ is( "a\c[COMBINING DOT ABOVE, COMBINING DOT BELOW]b".flip,
3534
"grapheme without precomposed");
3635

3736
is 234.flip, '432', '.flip on non-string';
38-
#?pugs skip 'sub NYI'
3937
is flip(123), '321', 'flip() on non-strings';
4038
{
4139
my $x = 'abc';

0 commit comments

Comments
 (0)