diff options
Diffstat (limited to 't')
-rw-r--r-- | t/rpmdb.t | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -2,8 +2,13 @@ use strict ; use warnings ; -use Test::More tests => 7; +use Test::More; use URPM; +if (-e '/etc/debian_version') { + plan skip_all => "Debian/Ubuntu do not have a system wide rpmdb"; +} else { + plan tests => 7; +} my ($count, @all_pkgs_extern, @all_pkgs); my ($pkg_perl, $count_perl, $pkg_perl_extern); |