Projet

Général

Profil

0002-tests-move-wcs-tests-68063.patch

Lauréline Guérin, 12 août 2022 09:43

Télécharger (1,58 ko)

Voir les différences:

Subject: [PATCH 2/8] tests: move wcs tests (#68063)

 tests/wcs/__init__.py                                        | 0
 tests/{test_wcs.py => wcs/test_all.py}                       | 5 ++---
 tests/{test_wcs_templatetags.py => wcs/test_templatetags.py} | 0
 3 files changed, 2 insertions(+), 3 deletions(-)
 create mode 100644 tests/wcs/__init__.py
 rename tests/{test_wcs.py => wcs/test_all.py} (99%)
 rename tests/{test_wcs_templatetags.py => wcs/test_templatetags.py} (100%)
tests/test_wcs.py → tests/wcs/test_all.py
38 38
from combo.data.library import get_cell_classes
39 39
from combo.data.models import CellBase, LinkCell, LinkListCell, Page, ValidityInfo
40 40
from combo.utils import NothingInCacheException
41

  
42
from .test_manager import login
43
from .utils import manager_submit_cell
41
from tests.test_manager import login
42
from tests.utils import manager_submit_cell
44 43

  
45 44
pytestmark = pytest.mark.django_db
46 45