Adds a test for the new feature

This commit is contained in:
LFDM 2014-02-01 01:43:43 +01:00
parent 60f1089d9d
commit f26a2ce830

View File

@ -3041,6 +3041,13 @@ class Bug1251994(_VimTest):
wanted = " world hello;blub" wanted = " world hello;blub"
# End: 1251994 #}}} # End: 1251994 #}}}
# Test for Github Pull Request #134 {{{#
class RetainsTheUnnamedRegister(_VimTest):
snippets = ("test", "${1:hello} ${2:world} ${0}")
keys = "yank" + ESC + "by4lea test" + EX + "HELLO" + JF + JF + ESC + "p"
wanted = "yank HELLO world yank"
# End: Github Pull Request # 134 #}}}
class VerifyVimDict1(_VimTest): class VerifyVimDict1(_VimTest):
"""check: """check:
correct type (4 means vim dictionary) correct type (4 means vim dictionary)