diff options
author | Bram Moolenaar <Bram@vim.org> | 2020-01-29 21:57:34 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2020-01-29 21:57:34 +0100 |
commit | 5d98dc2a48156d44139b75c689bd3137ff7fe8bf (patch) | |
tree | 0622310d475027658462943b1b9a9c85fc3ec48e /src/testdir/test_ga.vim | |
parent | 0ff6aad393c4130818fb4f49137380f78d7cc882 (diff) | |
download | vim-git-5d98dc2a48156d44139b75c689bd3137ff7fe8bf.tar.gz |
patch 8.2.0174: various commands not completely testedv8.2.0174
Problem: Various commands not completely tested.
Solution: Add more test cases. (Yegappan Lakshmanan, closes #5551)
Diffstat (limited to 'src/testdir/test_ga.vim')
-rw-r--r-- | src/testdir/test_ga.vim | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/testdir/test_ga.vim b/src/testdir/test_ga.vim index ea3d211ae..22f030c98 100644 --- a/src/testdir/test_ga.vim +++ b/src/testdir/test_ga.vim @@ -18,6 +18,7 @@ func Test_ga_command() call assert_equal("\nNUL", Do_ga('')) call assert_equal("\n<^A> 1, Hex 01, Oct 001, Digr SH", Do_ga("\x01")) call assert_equal("\n<^I> 9, Hex 09, Oct 011, Digr HT", Do_ga("\t")) + call assert_equal("\n<^@> 0, Hex 00, Octal 000", Do_ga("\n")) call assert_equal("\n<e> 101, Hex 65, Octal 145", Do_ga('e')) @@ -29,5 +30,13 @@ func Test_ga_command() call assert_equal("\n<e> 101, Hex 65, Octal 145 < ́> 769, Hex 0301, Octal 1401", Do_ga("e\u0301")) call assert_equal("\n<e> 101, Hex 65, Octal 145 < ́> 769, Hex 0301, Octal 1401 < ̱> 817, Hex 0331, Octal 1461", Do_ga("e\u0301\u0331")) call assert_equal("\n<e> 101, Hex 65, Octal 145 < ́> 769, Hex 0301, Octal 1401 < ̱> 817, Hex 0331, Octal 1461 < ̸> 824, Hex 0338, Octal 1470", Do_ga("e\u0301\u0331\u0338")) + + " When using Mac fileformat, CR instead of NL is used for line termination + enew! + set fileformat=mac + call assert_equal("\n<^J> 10, Hex 0a, Oct 012, Digr NU", Do_ga("\r")) + bwipe! endfunc + +" vim: shiftwidth=2 sts=2 expandtab |