2015-03-14 19:55:42 +01:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
|
|
|
# Allow direct execution
|
|
|
|
import os
|
|
|
|
import sys
|
|
|
|
import unittest
|
|
|
|
sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
|
|
|
|
|
2020-09-02 20:25:25 +02:00
|
|
|
from youtube_dlc.postprocessor import MetadataFromTitlePP
|
2015-03-14 19:55:42 +01:00
|
|
|
|
|
|
|
|
|
|
|
class TestMetadataFromTitle(unittest.TestCase):
|
|
|
|
def test_format_to_regex(self):
|
|
|
|
pp = MetadataFromTitlePP(None, '%(title)s - %(artist)s')
|
2018-11-22 18:43:42 +01:00
|
|
|
self.assertEqual(pp._titleregex, r'(?P<title>.+)\ \-\ (?P<artist>.+)')
|