The Perl Toolchain Summit 2025 Needs You: You can help 🙏 Learn more

use strict;
use Test::More tests => 11;
use constant METHODS => (
'new', 'to_form', 'from_form', '_generate_methods', 'store', 'retrieve',
'param', 'rt', 'cf',
);
BEGIN {
use_ok('RT::Client::REST::Object');
}
my $obj;
lives_ok {
$obj = RT::Client::REST::Object->new;
} 'Object can get successfully created';
for my $method (METHODS) {
can_ok($obj, $method);
}
# vim:ft=perl: