From Fedora Project Wiki

No edit summary
m (wiki cleanup)
Line 2: Line 2:
|description=Packages serching/installing/updating/uninstalling/group* works with yum-presto plugin installed.
|description=Packages serching/installing/updating/uninstalling/group* works with yum-presto plugin installed.
|actions=
|actions=
# Ensure you have yum-presto installed with:
# Ensure you have yum-presto installed with: <pre>rpm -q yum yum-presto</pre>
<pre>rpm -q yum yum-presto</pre>
# Try these basic commands:
# Try these basic commands:
<pre>yum search ksh
#: <pre>
yum list ksh
#: yum search ksh
rpm -e ksh; yum install ksh
#: yum list ksh
rpm -e ksh; rpm -ivh ksh-<old_version>.rpm; yum update ksh
#: rpm -e ksh; yum install ksh
yum remove ksh
#: rpm -e ksh; rpm -ivh ksh-<old_version>.rpm; yum update ksh
yum grouplist
#: yum remove ksh
yum groupinstall <some group>
#: yum grouplist
yum groupupgrade <some group>
#: yum groupinstall <some group>
yum groupremove <some group></pre>
#: yum groupupgrade <some group>
#: yum groupremove <some group></pre>
|results=
|results=
# All commands above should finish as expected. There should not be a traceback.
# All commands above should finish as expected. There should not be a traceback.
}}
}}
[[Category:YumPresto_Test_Cases]]
[[Category:YumPresto_Test_Cases]]

Revision as of 13:44, 16 April 2009

Description

Packages serching/installing/updating/uninstalling/group* works with yum-presto plugin installed.


How to test

  1. Ensure you have yum-presto installed with:
    rpm -q yum yum-presto
  2. Try these basic commands:
    yum search ksh
    yum list ksh
    rpm -e ksh; yum install ksh
    rpm -e ksh; rpm -ivh ksh-<old_version>.rpm; yum update ksh
    yum remove ksh
    yum grouplist
    yum groupinstall <some group>
    yum groupupgrade <some group>
    yum groupremove <some group>

Expected Results

  1. All commands above should finish as expected. There should not be a traceback.