mirror of
https://github.com/neovim/neovim.git
synced 2025-10-26 12:27:24 +00:00
refactor: format test/*
This commit is contained in:
@@ -98,8 +98,8 @@ describe('Special values', function()
|
||||
eq(0, eval('0 + v:false'))
|
||||
|
||||
eq(-1, eval('0 - v:true'))
|
||||
eq( 0, eval('0 - v:null'))
|
||||
eq( 0, eval('0 - v:false'))
|
||||
eq(0, eval('0 - v:null'))
|
||||
eq(0, eval('0 - v:false'))
|
||||
|
||||
eq(1, eval('1 * v:true'))
|
||||
eq(0, eval('1 * v:null'))
|
||||
@@ -125,9 +125,9 @@ describe('Special values', function()
|
||||
end)
|
||||
|
||||
it('work with . (concat) properly', function()
|
||||
eq("v:true", eval('"" . v:true'))
|
||||
eq("v:null", eval('"" . v:null'))
|
||||
eq("v:false", eval('"" . v:false'))
|
||||
eq('v:true', eval('"" . v:true'))
|
||||
eq('v:null', eval('"" . v:null'))
|
||||
eq('v:false', eval('"" . v:false'))
|
||||
end)
|
||||
|
||||
it('work with ?? (falsy operator)', function()
|
||||
|
||||
Reference in New Issue
Block a user