1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
|
use strict;
use Test;
plan test => 20;
use Apache::Admin::Config;
ok(1);
my $conf = new Apache::Admin::Config;
ok(defined $conf);
my $rv = $conf->add_comment('test', '-ontop');
ok(defined $rv);
ok($rv->value, 'test');
ok($rv->first_line, 1);
my $rv2 = $conf->add_comment('test2', '-ontop');
ok(defined $rv2);
ok($rv2->value, 'test2');
ok($rv2->first_line, 1);
ok($rv->first_line, 2);
my $rv3 = $conf->add_comment('test3', '-onbottom');
ok(defined $rv3);
ok($rv3->value, 'test3');
ok($rv3->first_line, 3);
ok($rv2->first_line, 1);
ok($rv->first_line, 2);
my $rv4 = $conf->add_comment('test4', -after=>$conf->comment('test2'));
ok(defined $rv4);
ok($rv4->value, 'test4');
ok($rv4->first_line, 2);
ok($rv3->first_line, 4);
ok($rv2->first_line, 1);
ok($rv->first_line, 3);
|