Add tests for yank migrations

This commit is contained in:
Marshall Lochbaum 2016-08-06 20:36:13 -04:00
parent 006a934913
commit 7bfa46fb50

View File

@ -286,6 +286,17 @@ class TestKeyConfigParser:
'hint links fill :open {hint-url}'),
('hint links fill ":open -t {hint-url}"',
'hint links fill :open -t {hint-url}'),
('yank-selected', 'yank selection'),
('yank-selected --sel', 'yank selection --sel'),
('yank-selected -p', 'yank selection -s'),
('yank -t', 'yank title'),
('yank -ts', 'yank title -s'),
('yank -d', 'yank domain'),
('yank -ds', 'yank domain -s'),
('yank -p', 'yank pretty-url'),
('yank -ps', 'yank pretty-url -s'),
]
)
def test_migrations(self, old, new_expected):