mirror of
https://github.com/lilydjwg/nvchecker
synced 2024-12-14 10:45:40 +00:00
11 lines
325 B
Python
11 lines
325 B
Python
from tests.helper import ExternalVersionTestCase
|
|
|
|
|
|
class RegexTest(ExternalVersionTestCase):
|
|
def test_regex(self):
|
|
self.assertEqual(self.sync_get_version("example", {
|
|
"url": "https://httpbin.org/get",
|
|
"regex": '"User-Agent": "(\w+)"',
|
|
"user_agent": "Meow",
|
|
}), "Meow")
|