forked from aniani/vim
Problem: Some balloon tests don't run when they can.
Solution: Split GUI balloon tests off into a separate file. (Ozaki Kiichi,
closes #4538) Change the feature check into a command for
consistency.
27 lines
761 B
VimL
27 lines
761 B
VimL
" Tests for reltime()
|
|
|
|
source check.vim
|
|
CheckFeature reltime
|
|
CheckFeature float
|
|
|
|
func Test_reltime()
|
|
let now = reltime()
|
|
sleep 10m
|
|
let later = reltime()
|
|
let elapsed = reltime(now)
|
|
call assert_true(reltimestr(elapsed) =~ '0\.0')
|
|
call assert_true(reltimestr(elapsed) != '0.0')
|
|
call assert_true(reltimefloat(elapsed) < 0.1)
|
|
call assert_true(reltimefloat(elapsed) > 0.0)
|
|
|
|
let same = reltime(now, now)
|
|
call assert_equal('0.000', split(reltimestr(same))[0][:4])
|
|
call assert_equal(0.0, reltimefloat(same))
|
|
|
|
let differs = reltime(now, later)
|
|
call assert_true(reltimestr(differs) =~ '0\.0')
|
|
call assert_true(reltimestr(differs) != '0.0')
|
|
call assert_true(reltimefloat(differs) < 0.1)
|
|
call assert_true(reltimefloat(differs) > 0.0)
|
|
endfunc
|