The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#!perl -wT
# Win32::GUI::Grid test suite.
# $Id: 99_pod_coverage.t,v 1.1 2006/06/11 16:42:16 robertemay Exp $

# Check the POD covers all method calls

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 => "Pod Coverage tests for Win32::GUI::Grid done by core" if $ENV{W32G_CORE};
all_pod_coverage_ok( { also_private => [ qr/^constant$/, ], } );