#!/usr/bin/perl

use strict;
use warnings;
use Test::More;

eval { require Test::Spelling; Test::Spelling->import() };

plan skip_all => "Test::Spelling required for testing POD coverage" if $@;

add_stopwords(qw/
	Hornsby
	NSW
	Param
	os
	Linuxes
	Ubuntu
	Ctrl
/);
all_pod_files_spelling_ok();