Domande taggate «python-mock»

1
Python simula più valori di ritorno
Sto usando pythons mock.patch e vorrei cambiare il valore di ritorno per ogni chiamata. Ecco l'avvertimento: la funzione da correggere non ha input, quindi non posso modificare il valore di ritorno in base all'input. Ecco il mio codice per riferimento. def get_boolean_response(): response = io.prompt('y/n').lower() while response not in ('y', …


2
Python Mocking di una funzione da un modulo importato
Voglio capire come eseguire @patchuna funzione da un modulo importato. Questo è dove sono finora. app / mocking.py: from app.my_module import get_user_name def test_method(): return get_user_name() if __name__ == "__main__": print "Starting Program..." test_method() app / my_module / __ init__.py: def get_user_name(): return "Unmocked User" test / mock-test.py: import unittest …

Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.