Incorrect search filter: invalid characters - *.p[ml]
API-BigBlueButton

 view release on metacpan or  search on metacpan

Changes  view on Meta::CPAN

Revision history for Perl extension API-BigBlueButton

0.015 2023-08-03T18:30:09Z

    - fixed buildig for perl-5.39, removed mentioning particular version of LWP

0.014 2015-01-28T21:58:00Z

    - description of additional dependencies
    - added new tests

0.013 2014-05-07T16:13:27Z

    - small fix in synopsis

0.012 2014-05-07T14:17:58Z

    - new git repo

0.011 2014-05-07T13:29:22Z

LICENSE  view on Meta::CPAN

OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
POSSIBILITY OF SUCH DAMAGES.

                     END OF TERMS AND CONDITIONS

        Appendix: How to Apply These Terms to Your New Programs

  If you develop a new program, and you want it to be of the greatest
possible use to humanity, the best way to achieve this is to make it
free software which everyone can redistribute and change under these
terms.

  To do so, attach the following notices to the program.  It is safest to
attach them to the start of each source file to most effectively convey
the exclusion of warranty; and each file should have at least the
"copyright" line and a pointer to where the full notice is found.

    <one line to give the program's name and a brief idea of what it does.>

META.json  view on Meta::CPAN

         "requires" : {
            "Carp" : "0",
            "Digest::SHA1" : "0",
            "LWP::UserAgent" : "6.05",
            "XML::Fast" : "0",
            "base" : "0",
            "constant" : "0",
            "perl" : "5.008008"
         }
      },
      "test" : {
         "requires" : {
            "FindBin" : "0",
            "Test::More" : "0.98",
            "Test::Spec" : "0"
         }
      }
   },
   "provides" : {
      "API::BigBlueButton" : {
         "file" : "lib/API/BigBlueButton.pm",

cpanfile  view on Meta::CPAN

requires 'perl', '5.008008';
requires 'Carp', '0';
requires 'LWP::UserAgent', '>= 6.05';
requires 'base', '0';
requires 'constant', '0';
requires 'Digest::SHA1', '0';
requires 'XML::Fast', '0';

on 'test' => sub {
    requires 'Test::More', '0.98';
    requires 'Test::Spec', '0';
    requires 'FindBin', '0';
};

t/001_compile.t  view on Meta::CPAN

#!/usr/bin/env perl

use strict;
use warnings;
use Test::More  tests => 3;

use FindBin qw/ $Bin /;
use lib "$Bin/../lib";

my @modules = qw/ API::BigBlueButton API::BigBlueButton::Requests API::BigBlueButton::Response /;

for my $module ( @modules ) {
    require_ok( $module );
}

done_testing;

t/002_bigbluebutton.t  view on Meta::CPAN

    };

    it "Empty param request" => sub {
        eval { $bbb->abstract_request( { checksum => $checksum } ) };

        ok ( $@ );
        like( $@, qr/Parameter request required/ );
    };
};

runtests unless caller;

t/003_bigbluebutton_requests.t  view on Meta::CPAN

    };

    describe "getrecordings" => sub {
        it "Normal run" => sub {
            ok( $bbb->getrecordings( meetingID => 'mymeeting', password  => 'mypass' ) );
            like( $url, qr/getRecordings\?meetingID=mymeeting&password=mypass/ );
        }
    };
};

runtests unless caller;



( run in 0.413 second using v1.01-cache-2.11-cpan-87723dcf8b7 )