Skip to content

Commit

Permalink
t/CORE/op/bless.t, t/C-COMPILED/CORE--io--utf8==BADTEST-255.t
Browse files Browse the repository at this point in the history
  • Loading branch information
Reini Urban committed Feb 18, 2014
1 parent abd07d5 commit d968cda
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
File renamed without changes.
8 changes: 4 additions & 4 deletions t/CORE/op/bless.t
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!./perl

BEGIN {
INIT {
require 't/CORE/test.pl';
}

Expand Down Expand Up @@ -99,17 +99,17 @@ expected(bless([]), 'main', "ARRAY");

$m = bless [];
expected($m, 'main', "ARRAY");
is (scalar @w, 0);
is (scalar @w, 0, "array 0");

@w = ();
$m = bless [], '';
expected($m, 'main', "ARRAY");
is (scalar @w, 1);
is (scalar @w, 1, "array 1");

@w = ();
$m = bless [], undef;
expected($m, 'main', "ARRAY");
is (scalar @w, 2);
is (scalar @w, 2, "array 2");
}

# class is a ref
Expand Down

0 comments on commit d968cda

Please sign in to comment.