summaryrefslogtreecommitdiffstats
path: root/t/superuser--suggests.t
diff options
context:
space:
mode:
Diffstat (limited to 't/superuser--suggests.t')
-rw-r--r--t/superuser--suggests.t11
1 files changed, 11 insertions, 0 deletions
diff --git a/t/superuser--suggests.t b/t/superuser--suggests.t
index 0b38a9a7..e6caeaa3 100644
--- a/t/superuser--suggests.t
+++ b/t/superuser--suggests.t
@@ -29,6 +29,7 @@ test_c();
test_invalid();
test_upgrade();
test_d();
+test_force_suggests();
sub test_b {
test('b', ['bb'], ['suggested_b']);
@@ -103,3 +104,13 @@ sub test_d {
}
}
+sub test_force_suggests {
+ set_urpmi_cfg_global_options({ 'no-suggests' => '' });
+
+ urpmi("--auto b");
+ check_installed_and_remove('b', 'bb');
+ urpmi("--auto --suggests b");
+ check_installed_and_remove('b', 'bb', 'suggested_b');
+
+ set_urpmi_cfg_global_options({});
+}