Mercurial > vim
view src/testdir/test_reltime.vim @ 25624:0ef8ef1af478 v8.2.3348
patch 8.2.3348: line2byte() returns wrong value after adding textprop
Commit: https://github.com/vim/vim/commit/14c7530c4fca786d3594508e28943f10125827c3
Author: Bram Moolenaar <Bram@vim.org>
Date: Sun Aug 15 14:28:40 2021 +0200
patch 8.2.3348: line2byte() returns wrong value after adding textprop
Problem: line2byte() returns wrong value after adding textprop. (Yuto
Kimura)
Solution: Reduce the length by the size of the text property. (closes #8759)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sun, 15 Aug 2021 14:30:04 +0200 |
parents | acda780ffc3e |
children | a5a772dace5b |
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([], reltime({})) call assert_equal([], reltime({}, {})) endfunc " vim: shiftwidth=2 sts=2 expandtab