Projet

Général

Profil

Télécharger (227 octets) Statistiques
| Branche: | Tag: | Révision:

root / tests / conftest.py @ e93ea142

1
import pytest
2
import django_webtest
3

    
4
@pytest.fixture
5
def app(request):
6
    wtm = django_webtest.WebTestMixin()
7
    wtm._patch_settings()
8
    request.addfinalizer(wtm._unpatch_settings)
9
    return django_webtest.DjangoTestApp()
(1-1/2)