Linux server1.dn-server.com 4.18.0-553.89.1.lve.el8.x86_64 #1 SMP Wed Dec 10 13:58:50 UTC 2025 x86_64
LiteSpeed
Server IP : 195.201.204.189 & Your IP : 216.73.217.130
Domains :
Cant Read [ /etc/named.conf ]
User : beriska1
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
alt /
python27 /
share /
doc /
alt-python27-mockito /
Delete
Unzip
Name
Size
Permission
Date
Action
AUTHORS
58
B
-rw-r--r--
2018-05-02 14:05
CHANGES.txt
6.75
KB
-rw-r--r--
2018-05-02 14:05
LICENSE
1.08
KB
-rw-r--r--
2018-05-02 14:05
README.rst
943
B
-rw-r--r--
2018-05-02 14:05
Save
Rename
Mockito is a spying framework originally based on `the Java library with the same name <https://github.com/mockito/mockito>`_. .. image:: https://travis-ci.org/kaste/mockito-python.svg?branch=master :target: https://travis-ci.org/kaste/mockito-python Install ======= ``pip install mockito`` Quick Start =========== 90% use case is that you want to stub out a side effect. :: from mockito import when, mock, unstub when(os.path).exists('/foo').thenReturn(True) # or: import requests # the famous library # you actually want to return a Response-like obj, we'll fake it response = mock({'status_code': 200, 'text': 'Ok'}) when(requests).get(...).thenReturn(response) # use it requests.get('http://google.com/') # clean up unstub() Read the docs ============= http://mockito-python.readthedocs.io/en/latest/ Run the tests ------------- :: pip install pytest py.test