blob: 4930d30da11ca1abb0069a590af5fbc0c4424646 (
plain)
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
|
#!/usr/bin/perl
use strict;
use lib '.', 't';
use helper;
use Test::More 'no_plan';
my $name = 'rpm-query-in-scriptlet';
need_root_and_prepare();
test_rpm_query_in_scriptlet();
sub test_rpm_query_in_scriptlet {
system_("rpm --root $::pwd/root -i media/$name/$name*.rpm --nodeps");
check_installed_names($name);
rebuilddb();
check_installed_names($name);
}
sub rebuilddb {
# testing rebuilddb (could be done elsewhere, but here is
system_("rpm --root $::pwd/root --rebuilddb");
my ($dir) = glob("$::pwd/root/var/lib/rpmrebuilddb*");
is($dir, undef, "$dir should not be there");
}
|