aboutsummaryrefslogtreecommitdiffstats
path: root/t/rpmdb.t
diff options
context:
space:
mode:
Diffstat (limited to 't/rpmdb.t')
-rw-r--r--t/rpmdb.t7
1 files changed, 6 insertions, 1 deletions
diff --git a/t/rpmdb.t b/t/rpmdb.t
index b263013..b9ffb5f 100644
--- a/t/rpmdb.t
+++ b/t/rpmdb.t
@@ -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);