mirror of
https://github.com/soimort/you-get.git
synced 2025-01-23 21:45:02 +03:00
12 lines
363 B
Python
12 lines
363 B
Python
#!/usr/bin/env python
|
|
|
|
import unittest
|
|
|
|
from you_get.common import *
|
|
|
|
class TestCommon(unittest.TestCase):
|
|
|
|
def test_match1(self):
|
|
self.assertEqual(match1('http://youtu.be/1234567890A', r'youtu.be/([^/]+)'), '1234567890A')
|
|
self.assertEqual(match1('http://youtu.be/1234567890A', r'youtu.be/([^/]+)', r'youtu.(\w+)'), ['1234567890A', 'be'])
|