Acme-AsciiArt2HtmlTable

 view release on metacpan or  search on metacpan

META.yml  view on Meta::CPAN

# http://module-build.sourceforge.net/META-spec.html
#XXXXXXX This is a prototype!!!  It will change in the future!!! XXXXX#
name:         Acme-AsciiArt2HtmlTable
version:      0.01
version_from: lib/Acme/AsciiArt2HtmlTable.pm
installdirs:  site
requires:
    Test::More:                    0

distribution_type: module
generated_by: ExtUtils::MakeMaker version 6.17

Makefile.PL  view on Meta::CPAN

use warnings;
use ExtUtils::MakeMaker;

WriteMakefile(
    NAME                => 'Acme::AsciiArt2HtmlTable',
    AUTHOR              => 'Jose Castro <cog@cpan.org>',
    VERSION_FROM        => 'lib/Acme/AsciiArt2HtmlTable.pm',
    ABSTRACT_FROM       => 'lib/Acme/AsciiArt2HtmlTable.pm',
    PL_FILES            => {},
    PREREQ_PM => {
        'Test::More' => 0,
    },
    dist                => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
    clean               => { FILES => 'Acme-AsciiArt2HtmlTable-*' },
);

t/00.load.t  view on Meta::CPAN

use Test::More tests => 1;

BEGIN {
use_ok( 'Acme::AsciiArt2HtmlTable' );
}

diag( "Testing Acme::AsciiArt2HtmlTable $Acme::AsciiArt2HtmlTable::VERSION" );

t/01.options.colors.t  view on Meta::CPAN

use Test::More tests => 9;

BEGIN {
use_ok( 'Acme::AsciiArt2HtmlTable' );
}

my $ex = 'rg
yu';

my $res1='<style>
.default td { height:1px; width:1px; }

t/01.options.id.t  view on Meta::CPAN

use Test::More tests => 2;

BEGIN {
use_ok( 'Acme::AsciiArt2HtmlTable' );
}

my $ex = '';

my $res='<style>
.testingid td { height:1px; width:1px; }
.testingid tr {  }

t/01.options.randomize-new-colors.t  view on Meta::CPAN

use Test::More tests => 3;

BEGIN {
use_ok( 'Acme::AsciiArt2HtmlTable' );
}

my $ex = 'rg
yx';

my $res1='<style>
.default td { height:1px; width:1px; }

t/01.options.table.t  view on Meta::CPAN

use Test::More tests => 5;

BEGIN {
use_ok( 'Acme::AsciiArt2HtmlTable' );
}

my $ex = '';

my $res1='<style>
.default td { height:1px; width:1px; }
.default tr {  }

t/01.options.td.t  view on Meta::CPAN

use Test::More tests => 4;

BEGIN {
use_ok( 'Acme::AsciiArt2HtmlTable' );
}

my $ex = '';

my $res1='<style>
.default td { height:1px; width:1px; }
.default tr {  }

t/01.options.tr.t  view on Meta::CPAN

use Test::More tests => 6;

BEGIN {
use_ok( 'Acme::AsciiArt2HtmlTable' );
}

my $ex = '';

my $res1='<style>
.default td { height:1px; width:1px; }
.default tr {  }

t/01.options.use-default-colors.t  view on Meta::CPAN

use Test::More tests => 4;

BEGIN {
use_ok( 'Acme::AsciiArt2HtmlTable' );
}

my $ex = 'rg
yu';

my $res1='<style>
.default td { height:1px; width:1px; }

t/02.special.default-color.t  view on Meta::CPAN

use Test::More tests => 6;

BEGIN {
use_ok( 'Acme::AsciiArt2HtmlTable' );
}

my $ex = '#';

my $res1='<style>
.default td { height:1px; width:1px; }
.default tr {  }

t/02.special.optimization.t  view on Meta::CPAN

use Test::More tests => 3;

BEGIN {
use_ok( 'Acme::AsciiArt2HtmlTable' );
}

my $ex = 'rrr
rgr
rrr
';

t/03.examples.empty.t  view on Meta::CPAN

use Test::More tests => 2;

BEGIN {
use_ok( 'Acme::AsciiArt2HtmlTable' );
}

my $ex = '';

my $res='<style>
.default td { height:1px; width:1px; }
.default tr {  }

t/03.examples.flag-pt.t  view on Meta::CPAN

use Test::More tests => 2;

BEGIN {
use_ok( 'Acme::AsciiArt2HtmlTable' );
}

my $ex = 'ggggggggrrrrrrrrrrrrrr
ggggggggrrrrrrrrrrrrrr
ggggggggrrrrrrrrrrrrrr
ggggggggrrrrrrrrrrrrrr
ggggggyyyyrrrrrrrrrrrr

t/03.examples.jose-castro.t  view on Meta::CPAN

use Test::More tests => 2;

BEGIN {
use_ok( 'Acme::AsciiArt2HtmlTable' );
}

my $ex = '      ###   ######    ######  ########       #######   ######    ######  #######  #######    ######  
      ###  ########  #######  ########      ########  ########  #######  #######  ########  ######## 
      ##+  ##+  ###  +##      ##+           +##       ##+  ###  +##        ##+    ##+  ###  ##+  ### 
      +#+  +#+  #+#  +#+      +#+           +#+       +#+  #+#  +#+        +#+    +#+  #+#  +#+  #+# 
      ++#  #+#  +#+  ++##++   #+++.+        +#+       #+#+#+#+  ++##++     #++    #+#++#+   #+#  +#+ 

t/pod-coverage.t  view on Meta::CPAN

#!perl -T

use Test::More;
eval "use Test::Pod::Coverage 1.04";
plan skip_all => "Test::Pod::Coverage 1.04 required for testing POD coverage" if $@;
all_pod_coverage_ok();

t/pod.t  view on Meta::CPAN

#!perl -T

use Test::More;
eval "use Test::Pod 1.14";
plan skip_all => "Test::Pod 1.14 required for testing POD" if $@;
all_pod_files_ok();

 view all matches for this distribution
 view release on metacpan -  search on metacpan

( run in 1.307 second using v1.00-cache-2.02-grep-82fe00e-cpan-585fae043c8 )