Domande taggate «python-unittest»


7
Esecuzione di test singoli da unittest.TestCase tramite riga di comando
Nel nostro team, definiamo la maggior parte dei casi di test come questo: Una classe "quadro" ourtcfw.py: import unittest class OurTcFw(unittest.TestCase): def setUp: # something # other stuff that we want to use everywhere e molti casi di test come testMyCase.py: import localweather class MyCase(OurTcFw): def testItIsSunny(self): self.assertTrue(localweather.sunny) def testItIsHot(self): …


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 …

11
AttributeError: l'oggetto "module" non ha attributi "test"
Sto eseguendo questo comando: python manage.py test project.apps.app1.tests e causa questo errore: AttributeError: l'oggetto "module" non ha attributi "test" Di seguito è riportata la struttura della mia directory. Ho anche aggiunto app1 alla configurazione delle mie app installate. Traceback (most recent call last): File "manage.py", line 10, in <module> execute_from_command_line(sys.argv) …


2
Come inviare richieste con JSON negli unit test
Ho del codice all'interno di un'applicazione Flask che utilizza JSON nella richiesta e posso ottenere l'oggetto JSON in questo modo: Request = request.get_json() Funziona bene, tuttavia sto cercando di creare unit test utilizzando il modulo unittest di Python e ho difficoltà a trovare un modo per inviare un JSON con …


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.