The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#!perl -w

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

eval 'use Test::CGI::Untaint';

if($@) {
	plan skip_all => 'Test::CGI::Untaint required for testing extraction handler';
} else {
	plan tests => 3;

	use_ok('CGI::Untaint::CountyStateProvince::GB');

	is_extractable('Devon', 'devon', 'CountyStateProvince');
	unextractable('Foo', 'CountyStateProvince');
}