1#!/usr/bin/perl -w
2
3use strict;
4use warnings;
5
6use Test::More;
7
8eval 'use Test::Pod::Spelling::CommonMistakes';
9if($@) {
10  plan skip_all => "Test::Pod::Spelling::CommonMistakes required for testing POD spelling";
11} else {
12  all_pod_files_ok();
13}
14