File: conf_zapata.t

package info (click to toggle)
libasterisk-agi-perl 1.08-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 444 kB
  • sloc: perl: 2,883; makefile: 2
file content (24 lines) | stat: -rw-r--r-- 700 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#Just do some simple tests to make sure the basic stuff works
use strict;
use Test::More;

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

BEGIN { plan tests => 4}

my $module_name = 'Asterisk::Conf::Zapata';

use_ok($module_name) or exit;

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

isa_ok($object, $module_name);

my @methods = qw(configfile channels readconfig writeconfig deletechannel setvariable helptext cgiform);

can_ok( $module_name, @methods);

$object->setvariable('channels' , '1-23','transfer', 'no');
my $expected = {  '1-23' => { 'transfer' => {'val' => 'no','precomment' => ";Modified by Asterisk::Config::Zapata\n"} } } ;
is_deeply( $object->{config}{channels} , $expected ,"setvariable datastructure");