Fix tests.

This commit is contained in:
Israel Chauca Fuentes
2013-07-13 22:58:42 -04:00
parent 14faba1c62
commit 57fd02b2e0

View File

@@ -7,6 +7,8 @@ call vimtap#Plan(testsnumber)
let tcount = 1 let tcount = 1
let expect = 0 let expect = 0
let evaluate = 0 let evaluate = 0
let commands = []
let header = ''
for item in lines for item in lines
if item =~ '^=\{80}$' if item =~ '^=\{80}$'
let expect = 1 let expect = 1
@@ -14,14 +16,20 @@ for item in lines
continue continue
endif endif
if item =~ '^#\|^\s*$' && expect == 0 if item =~ '^#' && expect == 0
" A comment or empty line. " A comment.
let header = empty(header) ? item[1:] : 'Lines should match.'
continue
endif
if item =~ '^\s*$' && expect == 0
" An empty line.
continue continue
endif endif
if ! expect if ! expect
" A command. " A command.
call add(commands, item)
exec item exec item
call vimtap#Diag(item) "call vimtap#Diag(item)
continue continue
endif endif
if item =~ '^-\{80}$' if item =~ '^-\{80}$'
@@ -35,8 +43,13 @@ for item in lines
let passed = lines == expected let passed = lines == expected
echom string(lines) echom string(lines)
echom string(expected) echom string(expected)
call vimtap#Ok(passed, string(expected) . call vimtap#Is(lines, expected, header)
\ (passed ? ' =' : ' !') . '= ' . string(lines)) echom string(commands)
for cmd in commands
call vimtap#Diag(cmd)
endfor
let commands = []
let header = ''
let tcount += 1 let tcount += 1
endfor endfor
call vimtest#Quit() call vimtest#Quit()