1234567891011 |
- from conftest import DeSECAPIV1Client
- def test_create(api_user: DeSECAPIV1Client, random_domainname):
- assert api_user.domain_create(random_domainname()).status_code == 201
- def test_destroy(api_user_domain: DeSECAPIV1Client):
- n = len(api_user_domain.domain_list().json())
- assert api_user_domain.domain_destroy(api_user_domain.domains[0]).status_code == 204
- assert len(api_user_domain.domain_list().json()) == n - 1
|