我使用Moose子类型作为属性,并希望测试(Test :: More)他们正确处理违反约束的输入。目前,Mooses的内部错误处理使我的testfile在看到无效数据时完全停止。
模块源(stackoverflow.com最小化):
package Doctor;
use Moose;
use Moose::Util::TypeConstraints;
subtype 'Phone_nr_t'
=> as 'Str'
=> where { $_ =~ /^\+?[0-9 ]+$/ }
=> message { 'A Phone_nr must be blabla' };
has 'fax' => (is => 'rw', isa => 'Phone_nr_t');
测试来源:
use Test::More tests=>1;
use Doctor;
my $testdoc=Doctor->new(fax=>'0341 2345678');
throws_ok { $testdoc->fax('123,456') }
qr('A Phone_nr must be blabla'),
'fax shall reject bad numbers';
答案 0 :(得分:2)
在发布StackOverflow之前请use strict
。您尚未加入use Test::Exception;
,因此您没有throws_ok
。如果你包括你的代码几乎可以工作。
这有效:
throws_ok { $testdoc->fax('123,456') }
Moose::Exception::ValidationFailedForInlineTypeConstraint,
'fax shall reject bad numbers';
您对正则表达式模式的定义也是错误的。它试图匹配不存在的引号。
throws_ok { $testdoc->fax('123,456') }
qr(A Phone_nr must be blabla),
'fax shall reject bad numbers';