mirror of
				https://github.com/neovim/neovim.git
				synced 2025-11-03 17:24:29 +00:00 
			
		
		
		
	Hope this will make people using feed_command less likely: this hides bugs. Already found at least two: 1. msgpackparse() will show internal error: hash_add() in case of duplicate keys, though it will still work correctly. Currently silenced. 2. ttimeoutlen was spelled incorrectly, resulting in option not being set when expected. Test was still functioning somehow though. Currently fixed.
		
			
				
	
	
		
			37 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Lua
		
	
	
	
	
	
			
		
		
	
	
			37 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Lua
		
	
	
	
	
	
local helpers = require('test.functional.helpers')(after_each)
 | 
						|
local clear, eq, ok = helpers.clear,  helpers.eq, helpers.ok
 | 
						|
local neq, command, funcs  = helpers.neq, helpers.command, helpers.funcs
 | 
						|
local reltime, reltimestr, reltimefloat = funcs.reltime, funcs.reltimestr, funcs.reltimefloat
 | 
						|
 | 
						|
describe('reltimestr(), reltimefloat()', function()
 | 
						|
  before_each(clear)
 | 
						|
 | 
						|
  it('Checks', function()
 | 
						|
    local now = reltime()
 | 
						|
    command('sleep 10m')
 | 
						|
    local later = reltime()
 | 
						|
    local elapsed = reltime(now)
 | 
						|
 | 
						|
    neq(reltimestr(elapsed), '0.0')
 | 
						|
    ok(reltimefloat(elapsed) > 0.0)
 | 
						|
    -- original vim test for < 0.1, but easily fails on travis
 | 
						|
    ok(nil ~= string.match(reltimestr(elapsed), "0%."))
 | 
						|
    ok(reltimefloat(elapsed) < 1.0)
 | 
						|
 | 
						|
    local same = reltime(now, now)
 | 
						|
    local samestr = string.gsub(reltimestr(same), ' ', '')
 | 
						|
    samestr = string.sub(samestr, 1, 5)
 | 
						|
 | 
						|
    eq('0.000', samestr)
 | 
						|
    eq(0.0, reltimefloat(same))
 | 
						|
 | 
						|
    local differs = reltime(now, later)
 | 
						|
    neq(reltimestr(differs), '0.0')
 | 
						|
    ok(reltimefloat(differs) > 0.0)
 | 
						|
    -- original vim test for < 0.1, but easily fails on travis
 | 
						|
    ok(nil ~= string.match(reltimestr(differs), "0%."))
 | 
						|
    ok(reltimefloat(differs) < 1.0)
 | 
						|
 | 
						|
  end)
 | 
						|
end)
 |