diff options
author | Kim Alvefur <zash@zash.se> | 2020-10-12 20:20:02 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2020-10-12 20:20:02 +0200 |
commit | 8f3d5ab4fb07c14784d8aa4900ac5d184f65ee24 (patch) | |
tree | e2b8a156016a261a980bfa2ff7ba3ece37ebdbaa /spec/util_dbuffer_spec.lua | |
parent | 687d48da48e60ff032c43e4c60a6a95a1566838d (diff) | |
download | prosody-8f3d5ab4fb07c14784d8aa4900ac5d184f65ee24.tar.gz prosody-8f3d5ab4fb07c14784d8aa4900ac5d184f65ee24.zip |
util.dbuffer: Expose length as :len() method, like strings
Ref #1598
Diffstat (limited to 'spec/util_dbuffer_spec.lua')
-rw-r--r-- | spec/util_dbuffer_spec.lua | 1 |
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); |