8 lines
212 B
Python
8 lines
212 B
Python
import socials_util
|
|
import pytest
|
|
|
|
|
|
@pytest.mark.parametrize('social_site_id', list(socials_util.SocialSiteId))
|
|
def test_consistency(social_site_id):
|
|
assert social_site_id in socials_util.WIKIDATA_PROPERTIES
|