Data-Semantic-URI
view release on metacpan or search on metacpan
- Data::Semantic::URI::TestData::*: there's not just 'good' and 'bad',
there's 'well_formed', 'not_well_formed', 'valid' and 'invalid' under
certain argument combinations
- Data::Semantic::URI::*_TEST: don't inherit from
Data::Semantic::RegexpTest, inherit from Data::Semantic::Test instead
- updated MANIFEST
- getting rid of the distinction between well-formedness and validity.
Only validity remains
- all classes: added documentation
- Data::Semantic::URI::http_TEST: run() tests keep()
- Makefile.PL: build requires Test::Differences
- updated t/perlcriticrc
},
"requires" : {
"Scalar::Util" : "0",
"English" : "0",
"parent" : "0",
"Data::Semantic::Test" : "0",
"constant" : "0",
"Carp" : "0",
"perl" : "5.008",
"Test::More" : "0.88",
"Test::Differences" : "0",
"File::Find" : "0",
"File::Temp" : "0",
"Test::CompanionClasses" : "0",
"Data::Semantic::RegexpAdapter" : "0"
},
"abstract" : "Semantic data classes for URI-related data",
"configure_requires" : {
"ExtUtils::MakeMaker" : "6.11"
}
}
version: 1.100850
requires:
Carp: 0
Data::Semantic::RegexpAdapter: 0
Data::Semantic::Test: 0
English: 0
File::Find: 0
File::Temp: 0
Scalar::Util: 0
Test::CompanionClasses: 0
Test::Differences: 0
Test::More: 0.88
constant: 0
parent: 0
perl: 5.008
resources:
bugtracker: http://rt.cpan.org/Public/Dist/Display.html?Name=Data-Semantic-URI
homepage: http://search.cpan.org/dist/Data-Semantic-URI/
repository: http://github.com/hanekomu/Data-Semantic-URI
version: 1.100850
Makefile.PL view on Meta::CPAN
'EXE_FILES' => [],
'VERSION' => '1.100850',
'PREREQ_PM' => {
'Scalar::Util' => '0',
'English' => '0',
'parent' => '0',
'Data::Semantic::Test' => '0',
'constant' => '0',
'Carp' => '0',
'Test::More' => '0.88',
'Test::Differences' => '0',
'File::Find' => '0',
'File::Temp' => '0',
'Test::CompanionClasses' => '0',
'Data::Semantic::RegexpAdapter' => '0'
},
'LICENSE' => 'perl'
);
delete $WriteMakefileArgs{LICENSE}
lib/Data/Semantic/URI/http_TEST.pm view on Meta::CPAN
use 5.008;
use strict;
use warnings;
package Data::Semantic::URI::http_TEST;
our $VERSION = '1.100850';
# ABSTRACT: Test companion class for the http URI semantic data class
use Test::More;
use Test::Differences;
use parent qw(
Data::Semantic::Test
Data::Semantic::URI::TestData::http
);
use constant PLAN => 2;
sub run {
my $self = shift;
$self->SUPER::run(@_);
my $obj = $self->make_real_object(keep => 1);
( run in 3.469 seconds using v1.01-cache-2.11-cpan-2398b32b56e )