view src/testdir/test_reltime.vim @ 24108:0a5eba7e6660 v8.2.2595

patch 8.2.2595: setting 'winminheight' may cause 'lines' to change Commit: https://github.com/vim/vim/commit/9e813b3dea94a8952b732a224fa31beba6e85973 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Mar 13 14:29:05 2021 +0100 patch 8.2.2595: setting 'winminheight' may cause 'lines' to change Problem: Setting 'winminheight' may cause 'lines' to change. Solution: Also take minimal height of other tabpages into account. (https://github.com/vim/vim/issues/7899)
author Bram Moolenaar <Bram@vim.org>
date Sat, 13 Mar 2021 14:30:03 +0100
parents 2fb397573541
children acda780ffc3e
line wrap: on
line source

" Tests for reltime()

source check.vim
CheckFeature reltime
CheckFeature float

func Test_reltime()
  let now = reltime()
  sleep 10m
  let later = reltime()
  let elapsed = now->reltime()
  call assert_true(reltimestr(elapsed) =~ '0\.0')
  call assert_true(elapsed->reltimestr() != '0.0')
  call assert_true(reltimefloat(elapsed) < 0.1)
  call assert_true(elapsed->reltimefloat() > 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)

  call assert_equal(0, reltime({}))
  call assert_equal(0, reltime({}, {}))
endfunc

" vim: shiftwidth=2 sts=2 expandtab