Jon Michael Aanes
9f6068b2f5
All checks were successful
Python Package / Package (push) Has been skipped
10 lines
214 B
Python
10 lines
214 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
|
|
|
|
|