[ SYSTEM ]: Linux srv.persadacompanies.com 4.18.0-553.56.1.el8_10.x86_64 #1 SMP Tue Jun 10 05:00:59 EDT 2025 x86_64
[ SERVER ]: Apache | PHP: 8.4.20
[ USER ]: persadamedika | IP: 45.64.1.108
GEFORCE FILE MANAGER
/
usr
/
share
/
doc
/
perl-Test-Simple
/
t
/
Test2
/
modules
/
EventFacet
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📄 About.t
521 B
SET
[ EDIT ]
|
[ DEL ]
📄 Amnesty.t
512 B
SET
[ EDIT ]
|
[ DEL ]
📄 Assert.t
514 B
SET
[ EDIT ]
|
[ DEL ]
📄 Control.t
726 B
SET
[ EDIT ]
|
[ DEL ]
📄 Error.t
500 B
SET
[ EDIT ]
|
[ DEL ]
📄 Info.t
491 B
SET
[ EDIT ]
|
[ DEL ]
📄 Meta.t
660 B
SET
[ EDIT ]
|
[ DEL ]
📄 Parent.t
590 B
SET
[ EDIT ]
|
[ DEL ]
📄 Plan.t
553 B
SET
[ EDIT ]
|
[ DEL ]
📄 Trace.t
1,239 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: Error.t
use strict; use warnings; use Test2::Tools::Tiny; use ok 'Test2::EventFacet::Error'; my $CLASS = 'Test2::EventFacet::Error'; my $one = $CLASS->new(details => 'foo', tag => 'uhg', fail => 1); is($one->details, "foo", "Got details"); is($one->tag, 'uhg', "Got 'tag' value"); is($one->fail, 1, "Got 'fail' value"); is_deeply($one->clone, $one, "Cloning."); isnt($one->clone, $one, "Clone is a new ref"); ok($CLASS->is_list, "is a list"); is($CLASS->facet_key, 'errors', "Got key"); done_testing;