File: astman.t

package info (click to toggle)
libasterisk-agi-perl 1.08-1.1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 452 kB
  • sloc: perl: 2,883; makefile: 2
file content (17 lines) | stat: -rw-r--r-- 398 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use strict;
use Test::More;

use lib '../lib';
use lib 'lib';

BEGIN { plan tests => 3}

my $module_name = 'Asterisk::Astman';
use_ok($module_name) or exit;

my $object = $module_name->new();
isa_ok($object, $module_name);

my @methods = qw( port host user secret connect  authenticate execute
defaultevent setevent managerloop arrtostr configfile setvar readconfig);
can_ok($module_name, @methods)