![]() |
![]() |
10 Einträge, 1 Seite |
This is perl, v5.8.8 built for MSWin32-x86-multi-thread.
1
2
3
4
5
6
7
t/01-wikiconverter....Reference found where even-sized list expected at C:/xampp
/perl/site/lib/CSS.pm line 18.
please provide a -source file at C:/xampp/perl/site/lib/CSS.pm line 23.
# Looks like your test died before it could output anything.
t/01-wikiconverter....dubious
Test returned status 255 (wstat 65280, 0xff00)
DIED. FAILED tests 1-50
1 2 3 4 5 6 7 8 9 10 11
sub new { my $class = shift; my %options = @_; my $self = bless {},$class; $self->debug ($options{-debug} || 0); $self->adaptor ($options{-adaptor} || 'Default'); $self->add_file($options{-source} || die "please provide a -source file"); return $self; }
CSS->new( $referenz );
1 2 3 4 5 6 7
sub new { my( $pkg, %attrs ) = @_; my $self = bless \%attrs, $pkg; $self->{_css} = new CSS( { parser => 'CSS::Parse::Lite' } ); $self->{_handlers} = $self->handlers; return $self; }
$self->{_css} = new CSS( { parser => 'CSS::Parse::Lite' } );
my %options = @_;
$self->{_css} = new CSS( parser => 'CSS::Parse::Lite' );
my %options = %{ $_[0] };
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
C:\xampp\perl\bin\perl.exe -MExtUtils::Command -e cp bin/html2wiki blib\
script\html2wiki
pl2bat.bat blib\script\html2wiki
C:\xampp\perl\bin\perl.exe "-MExtUtils::Command::MM" "-e" "test_harness(
0, 'blib\lib', 'blib\arch')" t/*.t
t/00-load.............ok 1/1# Testing HTML::WikiConverter 0.61, Perl 5.008008, C
:\xampp\perl\bin\perl.exe
t/00-load.............ok
t/01-wikiconverter....ok 1/50Can't locate object method "status" via package "HT
TP::Headers" at (eval 134) line 1.
# Looks like you planned 50 tests but only ran 34.
# Looks like your test died just after 34.
t/01-wikiconverter....dubious
Test returned status 255 (wstat 65280, 0xff00)
DIED. FAILED tests 35-50
Failed 16/50 tests, 68.00% okay
t/boilerplate.........ok
t/pod-coverage........skipped
all skipped: Test::Pod::Coverage 1.04 required for testing POD coverage
t/pod.................skipped
all skipped: Test::Pod 1.14 required for testing POD
Failed Test Stat Wstat Total Fail Failed List of Failed
-------------------------------------------------------------------------------
t/01-wikiconverter.t 255 65280 50 32 64.00% 35-50
2 tests skipped.
1 2 3 4 5 6 7
# Attribute accessors and mutators sub AUTOLOAD { my $self = shift; ( my $attr = $AUTOLOAD ) =~ s/.*://; return $self->_attr( $attr => @_ ) if exists $self->__attribute_specs->{$attr}; croak "Can't locate method '$attr' in package ".ref($self); }
![]() |
![]() |
10 Einträge, 1 Seite |