blob: 221f224e7db7a39b2e5f1b2d84bb47b8e8f4a55b (
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
|
#!/usr/bin/perl
# package "a" is split into "b" and "c",
# where "b" obsoletes "a" and requires "c"
# "c" conflicts with "a" (but can't obsolete it)
use strict;
use lib '.', 't';
use helper;
use Expect;
use urpm::util;
use Test::More 'no_plan';
need_root_and_prepare();
my $name = 'obsolete-and-conflict';
urpmi_addmedia("$name $::pwd/media/$name");
urpmi('a');
check_installed_names('a');
urpmi('b c');
check_installed_names('b', 'c');
|