#!/usr/bin/env perl # Taken from # http://www.chrisdolan.net/talk/index.php/2005/11/14/private-regression-tests/. use 5.008001; use utf8; use strict; use warnings; use version; our $VERSION = qv('v1.0.0'); use Test::More; use Test::Spelling; set_spell_cmd('aspell -l en list'); add_stopwords(); all_pod_files_spelling_ok(); __DATA__ =cut # setup vim: set filetype=perl tabstop=4 softtabstop=4 expandtab : # setup vim: set shiftwidth=4 shiftround textwidth=78 nowrap autoindent : # setup vim: set foldmethod=indent foldlevel=0 :