2020-11-17 17:28:45 +00:00
|
|
|
# MIT licensed
|
|
|
|
# Copyright (c) 2020 Felix Yan <felixonmars@archlinux.org>, et al.
|
|
|
|
|
|
|
|
import pytest
|
2024-03-09 11:59:01 +00:00
|
|
|
pytestmark = [
|
2024-11-03 10:29:19 +00:00
|
|
|
pytest.mark.asyncio,
|
2024-03-09 11:59:01 +00:00
|
|
|
pytest.mark.needs_net,
|
|
|
|
]
|
2020-11-17 17:28:45 +00:00
|
|
|
|
2024-11-03 10:47:05 +00:00
|
|
|
@pytest.mark.skip
|
2020-11-17 17:28:45 +00:00
|
|
|
async def test_mercurial(get_version):
|
2024-03-09 11:59:01 +00:00
|
|
|
assert await get_version("example", {
|
|
|
|
"source": "mercurial",
|
|
|
|
"mercurial": "https://repo.mercurial-scm.org/hg-website/json-tags",
|
|
|
|
}) == "v1.0"
|