Mercurial > vim
view src/testdir/test_reltime.vim @ 18829:eff8d8f72a82 v8.1.2402
patch 8.1.2402: typos and other small things
Commit: https://github.com/vim/vim/commit/f48ee3c28488f7c361732316f905ac420b3d8087
Author: Bram Moolenaar <Bram@vim.org>
Date: Fri Dec 6 22:18:20 2019 +0100
patch 8.1.2402: typos and other small things
Problem: Typos and other small things.
Solution: Small fixes.
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Fri, 06 Dec 2019 22:30:04 +0100 |
parents | 2029737e6a22 |
children | 2fb397573541 |
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) endfunc