aboutsummaryrefslogtreecommitdiffstats
path: root/spec
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2020-10-12 20:20:02 +0200
committerKim Alvefur <zash@zash.se>2020-10-12 20:20:02 +0200
commitd3b3e21720094ca5d4c0c4cf659d6aee4f1b578e (patch)
treee2b8a156016a261a980bfa2ff7ba3ece37ebdbaa /spec
parent0e0a75de4e809665f97aabb781503f8be48c8f80 (diff)
downloadprosody-d3b3e21720094ca5d4c0c4cf659d6aee4f1b578e.tar.gz
prosody-d3b3e21720094ca5d4c0c4cf659d6aee4f1b578e.zip
util.dbuffer: Expose length as :len() method, like strings
Ref #1598
Diffstat (limited to 'spec')
-rw-r--r--spec/util_dbuffer_spec.lua1
1 files changed, 1 insertions, 0 deletions
diff --git a/spec/util_dbuffer_spec.lua b/spec/util_dbuffer_spec.lua
index af404042..2b1af835 100644
--- a/spec/util_dbuffer_spec.lua
+++ b/spec/util_dbuffer_spec.lua
@@ -42,6 +42,7 @@ describe("util.dbuffer", function ()
assert.truthy(b:write("hello world"));
assert.truthy(b:discard(6));
assert.equal(5, b:length());
+ assert.equal(5, b:len());
assert.equal("world", b:read(5));
end);
end);