summaryrefslogtreecommitdiffstats
path: root/t/superuser--specify-media.t
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2008-01-18 10:10:01 +0000
committerPascal Rigaux <pixel@mandriva.com>2008-01-18 10:10:01 +0000
commitb62286596d011f4b4dc0352b950ac76c3cd93f8a (patch)
tree54e69a2851998c2810c5faa7a8d3deef0e155c3c /t/superuser--specify-media.t
parent1552f8682706dd1b9b95365b64d663bb38589ef5 (diff)
downloadurpmi-b62286596d011f4b4dc0352b950ac76c3cd93f8a.tar
urpmi-b62286596d011f4b4dc0352b950ac76c3cd93f8a.tar.gz
urpmi-b62286596d011f4b4dc0352b950ac76c3cd93f8a.tar.bz2
urpmi-b62286596d011f4b4dc0352b950ac76c3cd93f8a.tar.xz
urpmi-b62286596d011f4b4dc0352b950ac76c3cd93f8a.zip
cleanup using run_urpm_cmd
Diffstat (limited to 't/superuser--specify-media.t')
-rw-r--r--t/superuser--specify-media.t6
1 files changed, 2 insertions, 4 deletions
diff --git a/t/superuser--specify-media.t b/t/superuser--specify-media.t
index b2548834..31e4c6a5 100644
--- a/t/superuser--specify-media.t
+++ b/t/superuser--specify-media.t
@@ -34,8 +34,7 @@ test_urpmi("--sortmedia $media[1],$media[0]", $media_dirs[1], $media[0]);
sub test_urpmq {
my ($para, @wanted) = @_;
- my $urpmq = urpm_cmd('urpmq');
- my @l = `$urpmq $para --sources $name`;
+ my @l = run_urpm_cmd("urpmq $para --sources $name");
foreach my $dir (@wanted) {
my $found = shift @l;
is(dirname($found), $dir);
@@ -44,8 +43,7 @@ sub test_urpmq {
sub test_urpmi {
my ($para, $wanted, $bad) = @_;
- my $urpmi = urpmi_cmd();
- my $s = `$urpmi $para $name`;
+ my $s = run_urpm_cmd("urpmi $para $name");
$s =~ s/^Preparing.*//sm;
ok($s =~ m!^installing $name\S* from $wanted$!m, "$wanted in $s");