logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Monitoring::Plugin::ExitResult - Helper class for returning both output and return codes when testing.

Author

       This code is maintained by the Monitoring Plugin Development Team: see https://monitoring-plugins.org

       Originally:
           Gavin Carr , <gavin@openfusion.com.au>

Description

       Monitoring::Plugin::ExitResult is a tiny helper class intended for use when testing other
       Monitoring::Plugin modules. A Monitoring::Plugin::ExitResult object is returned by plugin_exit() and
       friends when Monitoring::Plugin::Functions::_fake_exit has been set, instead of doing a conventional
       print + exit.

Name

       Monitoring::Plugin::ExitResult - Helper class for returning both output and return codes when testing.

Synopsis

           use Test::More;
           use Monitoring::Plugin::Functions;

           # In a test file somewhere
           Monitoring::Plugin::Functions::_fake_exit(1);

           # Later ...
           $e = plugin_exit( CRITICAL, 'aiiii ...' );
           print $e->message;
           print $e->return_code;

           # MP::ExitResult also stringifies to the message output
           like(plugin_exit( WARNING, 'foobar'), qr/^foo/, 'matches!');

See Also