mirror of
https://github.com/LucBerge/yt-dlp.git
synced 2025-03-17 19:57:52 +03:00
[outtmpl] Add operator &
for replacement text (#2012)
Authored by: PilzAdam
This commit is contained in:
parent
ec2e44fc57
commit
e978789f0f
3 changed files with 16 additions and 4 deletions
|
@ -836,6 +836,11 @@ class TestYoutubeDL(unittest.TestCase):
|
|||
test('%(title3)s', ('foo/bar\\test', 'foo_bar_test'))
|
||||
test('folder/%(title3)s', ('folder/foo/bar\\test', 'folder%sfoo_bar_test' % os.path.sep))
|
||||
|
||||
# Replacement
|
||||
test('%(id&foo)s.bar', 'foo.bar')
|
||||
test('%(title&foo)s.bar', 'NA.bar')
|
||||
test('%(title&foo|baz)s.bar', 'baz.bar')
|
||||
|
||||
def test_format_note(self):
|
||||
ydl = YoutubeDL()
|
||||
self.assertEqual(ydl._format_note({}), '')
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue