mirror of
https://github.com/lilydjwg/nvchecker.git
synced 2025-03-10 06:14:02 +00:00
14 lines
384 B
Python
14 lines
384 B
Python
# MIT licensed
|
|
# Copyright (c) 2021 lilydjwg <lilydjwg@gmail.com>, et al.
|
|
|
|
import pytest
|
|
|
|
pytestmark = pytest.mark.asyncio
|
|
|
|
async def test_redirection(get_version):
|
|
assert await get_version("jmeter-plugins-manager", {
|
|
"source": "httpheader",
|
|
"url": "https://www.unifiedremote.com/download/linux-x64-deb",
|
|
"regex": r'urserver-([\d.]+).deb',
|
|
}) != None
|
|
|