Domande taggate «django-testing»

9
django test app error - Errore nella creazione del database di test: autorizzazione negata per la creazione del database
Quando provo a testare qualsiasi app con comando (l'ho notato quando ho provato a distribuire myproject usando fabric, che utilizza questo comando): python manage.py test appname Ottengo questo errore: Creating test database for alias 'default'... Got an error creating the test database: permission denied to create database Type 'yes' if …

4
Django Reverse con argomenti '()' e argomenti per parole chiave '{}' non trovati
Ciao ho un problema esasperante. Ho un modello di URL come questo: # mproject/myapp.urls.py url(r'^project/(?P<project_id>\d+)/$','user_profile.views.EditProject',name='edit_project'), funziona bene nel browser ma per i test, quando lo faccio nella shell: from django.test import Client from django.core.urlresolvers import reverse client= Client() response = client.get(reverse('edit_project'), project_id=4) Ottengo il temuto: NoReverseMatch: Reverse for 'edit_project' with …

3
Come devo scrivere i test per i moduli in Django?
Vorrei simulare le richieste alle mie visualizzazioni in Django quando scrivo i test. Questo è principalmente per testare le forme. Ecco uno snippet di una semplice richiesta di test: from django.tests import TestCase class MyTests(TestCase): def test_forms(self): response = self.client.post("/my/form/", {'something':'something'}) self.assertEqual(response.status_code, 200) # we get our page back with …

10
Test dell'invio di email in Django [chiuso]
Chiuso . Questa domanda deve essere più mirata . Attualmente non accetta risposte. Vuoi migliorare questa domanda? Aggiorna la domanda in modo che si concentri su un problema solo modificando questo post . Chiuso 6 mesi fa . Migliora questa domanda Devo verificare che la mia applicazione Django invii e-mail …
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.