#!/usr/bin/env perl
use strict;
use warnings;
-use Test::More tests => 28;
+use Test::More tests => 27;
use Test::Exception;
do {
TODO: {
local our $TODO = "Mouse lacks this";
eval {
- has error3 => (
- handles => qr/regex/,
- );
- };
- ::ok(!$@, "handles => qr/re/");
- }
-
- TODO: {
- local our $TODO = "Mouse lacks this";
- eval {
has error4 => (
handles => sub { "code" },
);