9 lines
213 B
Python
9 lines
213 B
Python
import pytest
|
|
|
|
import socials_util
|
|
|
|
|
|
@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
|