import pytest @pytest.mark.django_db def test_meta_choices(api_client): response = api_client.get('/api/v1/meta/choices/') assert response.status_code == 200 data = response.data assert 'relation_types' in data assert 'life_spheres' in data assert 'network_circles' in data assert 'interaction_intensities' in data assert any(x['value'] == 'friend' for x in data['relation_types']) @pytest.mark.django_db def test_relation_types_legacy(api_client): response = api_client.get('/api/v1/relation-types/') assert response.status_code == 200 assert len(response.data) >= 1