From Fedora Project Wiki
No edit summary |
No edit summary |
||
Line 15: | Line 15: | ||
# 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:Package_yum_test_cases]] |
Revision as of 09:35, 2 July 2011
Description
This test verifies basic yum functionality including searching, installing, updating, removing, and group functions.
How to test
- Ensure you have yum installed with:
rpm -q yum
- Search for a package:
yum search ksh
- List a package:
yum list ksh
- Install a package:
rpm -e ksh; yum install ksh
- Upgrade a package:
rpm -e ksh; rpm -ivh ksh-<old_version>.rpm; yum update ksh
- Remove a package:
yum remove ksh
- Group list:
yum grouplist
- Group install:
yum groupinstall <some group>
- Group upgrade:
yum groupupgrade <some group>
- Group remove:
yum groupremove <some group>
Expected Results
- All commands above should finish as expected. There should not be a traceback.