diff options
author | Björn Linse <bjorn.linse@gmail.com> | 2015-06-30 11:32:14 +0200 |
---|---|---|
committer | Björn Linse <bjorn.linse@gmail.com> | 2015-09-08 10:54:31 +0200 |
commit | ffff2c9c47e63f1764ca743810a259d607f75104 (patch) | |
tree | 820bbb33a041793b198416210adf1d15ec295ac2 /test | |
parent | e99368104ac5883742c44f8d21692af878257d7b (diff) | |
download | rneovim-ffff2c9c47e63f1764ca743810a259d607f75104.tar.gz rneovim-ffff2c9c47e63f1764ca743810a259d607f75104.tar.bz2 rneovim-ffff2c9c47e63f1764ca743810a259d607f75104.zip |
encoding: Update handling of encoding in tests
Always run tests with encoding=utf-8, regardless of user locale
Don't set &encoding after startup in tests
Helped-By: Michael Reed <m.reed@mykolab.com>
Diffstat (limited to 'test')
-rw-r--r-- | test/functional/helpers.lua | 2 | ||||
-rw-r--r-- | test/functional/legacy/044_099_regexp_multibyte_magic_spec.lua | 1 | ||||
-rw-r--r-- | test/functional/legacy/075_maparg_spec.lua | 1 | ||||
-rw-r--r-- | test/functional/legacy/082_string_comparison_spec.lua | 1 | ||||
-rw-r--r-- | test/functional/legacy/095_regexp_multibyte_spec.lua | 2 | ||||
-rw-r--r-- | test/functional/legacy/mapping_spec.lua | 2 | ||||
-rw-r--r-- | test/functional/legacy/utf8_spec.lua | 1 |
7 files changed, 2 insertions, 8 deletions
diff --git a/test/functional/helpers.lua b/test/functional/helpers.lua index f228f6290c..6c0288087a 100644 --- a/test/functional/helpers.lua +++ b/test/functional/helpers.lua @@ -7,7 +7,7 @@ local Session = require('nvim.session') local nvim_prog = os.getenv('NVIM_PROG') or 'build/bin/nvim' local nvim_argv = {nvim_prog, '-u', 'NONE', '-i', 'NONE', '-N', - '--cmd', 'set shortmess+=I background=light noswapfile noautoindent laststatus=1', + '--cmd', 'set shortmess+=I background=light noswapfile noautoindent laststatus=1 encoding=utf-8', '--embed'} -- Formulate a path to the directory containing nvim. We use this to diff --git a/test/functional/legacy/044_099_regexp_multibyte_magic_spec.lua b/test/functional/legacy/044_099_regexp_multibyte_magic_spec.lua index 58838e9d6e..efe61aa354 100644 --- a/test/functional/legacy/044_099_regexp_multibyte_magic_spec.lua +++ b/test/functional/legacy/044_099_regexp_multibyte_magic_spec.lua @@ -33,7 +33,6 @@ local function run_test_with_regexpengine(regexpengine) j 0123❤x k combinations]]) - execute('set encoding=utf-8') execute('set re=' .. regexpengine) -- Lines 1-8. Exercise regexp search with various magic settings. On each diff --git a/test/functional/legacy/075_maparg_spec.lua b/test/functional/legacy/075_maparg_spec.lua index dac8940314..418abb14d4 100644 --- a/test/functional/legacy/075_maparg_spec.lua +++ b/test/functional/legacy/075_maparg_spec.lua @@ -10,7 +10,6 @@ describe('maparg()', function() it('is working', function() execute('set cpo-=<') - execute('set encoding=utf8') -- Test maparg() with a string result execute('map foo<C-V> is<F4>foo') diff --git a/test/functional/legacy/082_string_comparison_spec.lua b/test/functional/legacy/082_string_comparison_spec.lua index bd4e8a4d79..1615828ca0 100644 --- a/test/functional/legacy/082_string_comparison_spec.lua +++ b/test/functional/legacy/082_string_comparison_spec.lua @@ -9,7 +9,6 @@ describe('case-insensitive string comparison in UTF-8', function() setup(clear) it('is working', function() - execute('set enc=utf8') feed('ggdG<cr>') source([[ function! Ch(a, op, b, expected) diff --git a/test/functional/legacy/095_regexp_multibyte_spec.lua b/test/functional/legacy/095_regexp_multibyte_spec.lua index a72fb669d2..559222e2ff 100644 --- a/test/functional/legacy/095_regexp_multibyte_spec.lua +++ b/test/functional/legacy/095_regexp_multibyte_spec.lua @@ -15,7 +15,7 @@ describe('regex with multi-byte', function() Results of test95:]]) source([=[ - set encoding=utf-8 nomore + set nomore let tl = [] call add(tl, [2, '[[:alpha:][=a=]]\+', '879 aiaãâaiuvna ', 'aiaãâaiuvna']) diff --git a/test/functional/legacy/mapping_spec.lua b/test/functional/legacy/mapping_spec.lua index 0843506827..899f7423d0 100644 --- a/test/functional/legacy/mapping_spec.lua +++ b/test/functional/legacy/mapping_spec.lua @@ -12,8 +12,6 @@ describe('mapping', function() test starts here: ]]) - execute('set encoding=utf-8') - -- Abbreviations with р (0x80) should work. execute('inoreab чкпр vim') feed('GAчкпр <esc>') diff --git a/test/functional/legacy/utf8_spec.lua b/test/functional/legacy/utf8_spec.lua index d26f436057..ef717042d0 100644 --- a/test/functional/legacy/utf8_spec.lua +++ b/test/functional/legacy/utf8_spec.lua @@ -10,7 +10,6 @@ describe('utf8', function() it('is working', function() insert('start:') - execute('set encoding=utf-8') execute('new') execute('call setline(1, ["aaa", "あああ", "bbb"])') |