How to Install and Uninstall python2-fudge Package on openSUSE Leap

Last updated: June 26,2024

1. Install "python2-fudge" package

Please follow the guidelines below to install python2-fudge on openSUSE Leap

$ sudo zypper refresh $ sudo zypper install python2-fudge

2. Uninstall "python2-fudge" package

Please follow the steps below to uninstall python2-fudge on openSUSE Leap:

$ sudo zypper remove python2-fudge

3. Information about the python2-fudge package on openSUSE Leap

Information for package python2-fudge:
--------------------------------------
Repository : Main Repository
Name : python2-fudge
Version : 1.1.1-bp153.1.17
Arch : noarch
Vendor : openSUSE
Installed Size : 419,4 KiB
Installed : No
Status : not installed
Source package : python-fudge-1.1.1-bp153.1.17.src
Summary : Module for replacing real objects with fakes (mocks, stubs, etc) while testing
Description :
Complete documentation is available at http://farmdev.com/projects/fudge/
Fudge is a Python module for using fake objects (mocks and stubs) to test real ones.
In readable Python code, you declare what methods are available on your fake and
how they should be called. Then you inject that into your application and start
testing. This declarative approach means you don't have to record and playback
actions and you don't have to inspect your fakes after running code. If the fake
object was used incorrectly then you'll see an informative exception message
with a traceback that points to the culprit.