Skip to content

Commit

Permalink
xt/00-dependencies.t
Browse files Browse the repository at this point in the history
  • Loading branch information
cho45 committed Dec 3, 2010
1 parent f77ab0c commit 38525ba
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions xt/00-dependencies.t
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
use YAML;
use Test::Dependencies
exclude =>
[qw/ Text::Xatena Filter::Util::Call Test::Base /];

local *Test::Dependencies::LoadFile = sub {
my ($filename) = @_;
my $data = YAML::LoadFile($filename);
if ($filename eq 'META.yml') {
delete $data->{build_requires}->{'ExtUtils::MakeMaker'};
delete $data->{requires}->{'Filter::Util::Call'};
}
$data;
};


ok_dependencies();

0 comments on commit 38525ba

Please sign in to comment.