Software /
code /
prosody
File
spec/util_time_spec.lua @ 10335:4d875bbd6226
doc/doap: Claim support for XEP-0268 via mod_csi_simple
mod_csi_simple tries to follow the advice in XEP-0268.
Notably, since 7d78b24d8449 it also does this:
> If the server receives data, the phones radio is already on, therefore
> you should flush any pending data as soon as possible after receiving
> data from a client
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Tue, 15 Oct 2019 00:13:52 +0200 |
parent | 9193:aba99b6539f5 |
line wrap: on
line source
describe("util.time", function () local time; setup(function () time = require "util.time"; end); describe("now()", function () it("exists", function () assert.is_function(time.now); end); it("returns a number", function () assert.is_number(time.now()); end); end); describe("monotonic()", function () it("exists", function () assert.is_function(time.monotonic); end); it("returns a number", function () assert.is_number(time.monotonic()); end); it("time goes in one direction", function () local a = time.monotonic(); local b = time.monotonic(); assert.truthy(a <= b); end); end); end);