diff options
author | w0rp <w0rp@users.noreply.github.com> | 2020-08-14 00:32:28 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-14 00:32:28 +0100 |
commit | 2b2403a20d59ea4207be01ca308ec43a90e9453f (patch) | |
tree | 0be0f3936739e09a772d9ab5c89de97669e2460e /test | |
parent | 8151e3e8facfc0474ac18177fc1a3047326788d5 (diff) | |
parent | 15d590ee5e6779b6dad2640cdb55abc9d357bbe9 (diff) | |
download | ale-2b2403a20d59ea4207be01ca308ec43a90e9453f.zip |
Merge pull request #3144 from jamescdavis/dont_append_newline_when_noeol
don't append a newline to temp file when buffer is noeol and nofixeol is set
Diffstat (limited to 'test')
-rw-r--r-- | test/test_writefile_function.vader | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/test/test_writefile_function.vader b/test/test_writefile_function.vader index 811d59e8..53a88331 100644 --- a/test/test_writefile_function.vader +++ b/test/test_writefile_function.vader @@ -69,3 +69,49 @@ Execute(Unix file lines should be written as normal): AssertEqual \ ['first', 'second', 'third', ''], \ readfile(g:new_line_test_file, 'b') + +Execute(Newline at end of file should be preserved even when nofixeol): + call ale#test#SetFilename(g:new_line_test_file) + + setlocal buftype= + noautocmd :w + noautocmd :e! ++ff=unix + set eol + set nofixeol + + call ale#util#Writefile(bufnr(''), getline(1, '$'), g:new_line_test_file) + + AssertEqual + \ ['first', 'second', 'third', ''], + \ readfile(g:new_line_test_file, 'b') + +Execute(Newline should not be appended on write when noeol and nofixeol): + call ale#test#SetFilename(g:new_line_test_file) + + setlocal buftype= + noautocmd :w + noautocmd :e! ++ff=unix + set noeol + set nofixeol + + call ale#util#Writefile(bufnr(''), getline(1, '$'), g:new_line_test_file) + + AssertEqual + \ ['first', 'second', 'third'], + \ readfile(g:new_line_test_file, 'b') + +Execute(Newline should be appended on write when noeol and fixeol): + call ale#test#SetFilename(g:new_line_test_file) + + setlocal buftype= + noautocmd :w + noautocmd :e! ++ff=unix + set noeol + set fixeol + + call ale#util#Writefile(bufnr(''), getline(1, '$'), g:new_line_test_file) + + AssertEqual + \ ['first', 'second', 'third', ''], + \ readfile(g:new_line_test_file, 'b') + |