This archive contains the distribution Silki,
version 0.28:
Silki is a Catalyst-based wiki hosting platform
This software is Copyright (c) 2011 by Dave Rolsky.
This is free software, licensed under:
The GNU Affero General Public License, Version 3, November 2007
BEGIN {
unless ($ENV{RELEASE_TESTING}) {
require Test::More;
Test::More::plan(skip_all => 'these tests are for release candidate testing');
}
}
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 $@;
plan skip_all => 'No API pod yet';
all_pod_coverage_ok();
BEGIN {
unless ($ENV{RELEASE_TESTING}) {
require Test::More;
Test::More::plan(skip_all => 'these tests are for release candidate testing');
}
}
use strict;
use warnings;
use Test::More;
eval "use Test::Spelling";
plan skip_all => "Test::Spelling required for testing POD coverage"
if $@;
my @stopwords;
for (<DATA>) {
chomp;
push @stopwords, $_
unless /\A (?: \#
more»