Software /
code /
prosody
File
spec/util_indexedbheap_spec.lua @ 11062:dd3b1b9d867d
mod_posix: Daemonize later
Daemonizing later means we can use that as a "successful startup"
signal and problems can be reported via exit code.
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Tue, 08 Sep 2020 22:50:43 +0200 |
parent | 10998:f3fc0f799dc4 |
child | 11116:d334f2bebe55 |
line wrap: on
line source
local ibh = require"util.indexedbheap"; local h setup(function () h = ibh.create(); end) describe("util.indexedbheap", function () pending("item can be moved from end to top", function () h:insert("a", 1); h:insert("b", 2); h:insert("c", 3); local id = h:insert("*", 10); h:reprioritize(id, 0); assert.same({ 0, "*", id }, { h:pop() }); end) end);