Testcase added!

This commit is contained in:
dNItro 2016-01-25 04:25:15 -08:00
parent 203218297c
commit 4b27b7152d

View File

@ -179,6 +179,12 @@ class Transformation_OptionIgnoreCase_ECR(_VimTest):
wanted = 'TEST blah'
class Transformation_OptionMultiline_ECR(_VimTest):
snippets = ('test', r"${VISUAL/^/* /mg}")
keys = 'test\ntest\ntest' + ESC + 'V2k' + EX + 'test' + EX
wanted = '* test\n* test\n* test'
class Transformation_OptionReplaceGlobal_ECR(_VimTest):
snippets = ('test', r"$1 ${1/, */-/g}")
keys = 'test' + EX + 'a, nice, building'