Acme-AutoColor

 view release on metacpan or  search on metacpan

META.json  view on Meta::CPAN

      },
      "configure" : {
         "requires" : {
            "ExtUtils::MakeMaker" : "0"
         }
      },
      "runtime" : {
         "requires" : {
            "Graphics::ColorNames" : "0",
            "Graphics::ColorNames::HTML" : "0",
            "Test::More" : "0"
         }
      }
   },
   "release_status" : "stable",
   "version" : "0.04",
   "x_serialization_backend" : "JSON::PP version 4.07"
}

META.yml  view on Meta::CPAN

  url: http://module-build.sourceforge.net/META-spec-v1.4.html
  version: '1.4'
name: Acme-AutoColor
no_index:
  directory:
    - t
    - inc
requires:
  Graphics::ColorNames: '0'
  Graphics::ColorNames::HTML: '0'
  Test::More: '0'
version: '0.04'
x_serialization_backend: 'CPAN::Meta::YAML version 0.018'

Makefile.PL  view on Meta::CPAN

require 5.6.0;
use ExtUtils::MakeMaker;
WriteMakefile
(
          'NAME' => 'Acme::AutoColor',
          'VERSION_FROM' => 'lib/Acme/AutoColor.pm',
          'PREREQ_PM' => {
                           'Graphics::ColorNames' => 0,
                           'Graphics::ColorNames::HTML' => 0,
                           'Test::More' => 0
                         },
          'INSTALLDIRS' => 'site',
          'EXE_FILES' => [],
          'PL_FILES' => {}
        ),
    ($] >= 5.005 ?     ## Add these new keywords supported since 5.005
      (AUTHOR         => 'Rene Schickbauer <cavac@cpan.org>') : ()),
;

t/01-standard-colors.t  view on Meta::CPAN

#!/usr/bin/perl

# use strict;
use Test::More tests => 10;

use_ok('Acme::AutoColor', 'X', 'HTML');

my $red = RED();

ok( RED()   eq 'ff0000', "red" );
ok( GREEN() eq '00ff00', "green" );
ok( BLUE()  eq '0000ff', "blue" );

my @red = RED();

t/02-octarine.t  view on Meta::CPAN

#!/usr/bin/perl

# use strict;
use Test::More tests => 7;

use_ok('Acme::AutoColor', 'X', 'HTML');

ok( OCTARINE()  eq '000000ff', "octarine" );

my @octarine = OCTARINE();
ok( $octarine[0] == 0 );    # Red
ok( $octarine[1] == 0 );    # Green
ok( $octarine[2] == 0 );    # Blue
ok( $octarine[3] == 255 );  # Octarine

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

#!/usr/bin/perl -w

# This test will currently fail due to incorrect POD tags

use strict;
use warnings;
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();

t/04-podcoverage.t  view on Meta::CPAN

#!/usr/bin/perl -w

use strict;
use warnings;

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({  also_private => [ '/^[A-Z_]+$/' ], });

my @modules = all_modules();

my @testmodules;

my $tests = 0;

foreach my $module (@modules) {
    # currently no special handling

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

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