|
NAMETest::Reporter::Transport::Metabase - Metabase transport for Test::ReporterVERSIONversion 1.999010SYNOPSISmy $report = Test::Reporter->new( transport => 'Metabase', transport_args => [ uri => 'http://metabase.example.com:3000/', id_file => '/home/jdoe/.metabase/metabase_id.json', ], ); # use space-separated in a CPAN::Reporter config.ini transport = Metabase uri http://metabase.example.com:3000/ ... DESCRIPTIONThis module submits a Test::Reporter report to the specified Metabase instance.This requires a network connection to the Metabase uri provided. If you wish to save reports during offline operation, see Test::Reporter::Transport::File. (Eventually, you may be able to run a local Metabase instance to queue reports for later transmission, but this feature has not yet been developed.) USAGESee Test::Reporter and Test::Reporter::Transport for general usage information.Transport argumentsUnlike most other Transport classes, this class requires transport arguments to be provided as key-value pairs:my $report = Test::Reporter->new( transport => 'Metabase', transport_args => [ uri => 'http://metabase.example.com:3000/', id_file => '/home/jdoe/.metabase/metabase_id.json', ], ); Arguments include:
METHODSThese methods are only for internal use by Test::Reporter.newmy $sender = Test::Reporter::Transport::File->new( $params ); The "new" method is the object constructor. send$sender->send( $report ); The "send" method transmits the report. SUPPORTBugs / Feature RequestsPlease report any bugs or feature requests through the issue tracker at <https://github.com/cpan-testers/Test-Reporter-Transport-Metabase/issues>. You will be notified automatically of any progress on your issue.Source CodeThis is open source software. The code repository is available for public review and contribution under the terms of the license.<https://github.com/cpan-testers/Test-Reporter-Transport-Metabase> git clone https://github.com/cpan-testers/Test-Reporter-Transport-Metabase.git AUTHORS
CONTRIBUTORS
COPYRIGHT AND LICENSEThis software is Copyright (c) 2016 by David Golden.This is free software, licensed under: The Apache License, Version 2.0, January 2004
Visit the GSP FreeBSD Man Page Interface. |