1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
Before:
call ale#test#SetDirectory('/testplugin/test')
After:
noautocmd :e! ++ff=unix
setlocal buftype=nofile
if filereadable('.newline-test')
call delete('.newline-test')
endif
call ale#test#RestoreDirectory()
Given(A file with Windows line ending characters):
first
second
third
Execute(Carriage returns should be included for ale#util#Writefile):
call ale#test#SetFilename('.newline-test')
setlocal buftype=
noautocmd :w
noautocmd :e! ++ff=dos
call ale#util#Writefile(bufnr(''), getline(1, '$'), '.newline-test')
AssertEqual
\ ["first\r", "second\r", "third\r", ''],
\ readfile('.newline-test', 'b')
\
Given(A file with Unix line ending characters):
first
second
third
Execute(Unix file lines should be written as normal):
call ale#test#SetFilename('.newline-test')
setlocal buftype=
noautocmd :w
noautocmd :e! ++ff=unix
call ale#util#Writefile(bufnr(''), getline(1, '$'), '.newline-test')
AssertEqual
\ ['first', 'second', 'third', ''],
\ readfile('.newline-test', 'b')
|