blob: 3bdefbec938eae41662e9216f557e3a17223d43c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#!/usr/bin/perl
use strict;
use warnings;
use Test::More tests => 2;
use Lintian::Relation;
my $relation
= Lintian::Relation->new->load_norestriction('pkgA [i386], pkgB [amd64]');
ok($relation->satisfies('pkgA:any'), 'Implies arch alt [i386]');
ok($relation->satisfies('pkgB:any'), 'Implies arch alt [amd64]');
# Local Variables:
# indent-tabs-mode: nil
# cperl-indent-level: 4
# End:
# vim: syntax=perl sw=4 sts=4 sr et
|