summaryrefslogtreecommitdiffstats
path: root/t/helper.pm
diff options
context:
space:
mode:
Diffstat (limited to 't/helper.pm')
-rw-r--r--t/helper.pm6
1 files changed, 0 insertions, 6 deletions
diff --git a/t/helper.pm b/t/helper.pm
index 1980abb1..e1ae6655 100644
--- a/t/helper.pm
+++ b/t/helper.pm
@@ -8,7 +8,6 @@ our @EXPORT = qw(need_root_and_prepare
urpm_cmd run_urpm_cmd urpmi_cmd urpmi urpmi_partial test_urpmi_fail urpme
urpmi_cfg set_urpmi_cfg_global_options
system_ system_should_fail
- rpm_is_jbj_version
check_installed_fullnames check_installed_names check_nothing_installed
check_installed_and_remove check_installed_fullnames_and_remove check_installed_and_urpme
);
@@ -124,11 +123,6 @@ sub system_should_fail {
: ok($? != 0, "should fail: $cmd");
}
-sub rpm_is_jbj_version {
- # checking for --yaml support
- `rpm --help` =~ /yaml/;
-}
-
sub check_installed_fullnames {
my (@names) = @_;
is(`rpm -qa --root $::pwd/root | sort`, join('', map { "$_\n" } sort(@names)));