mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
spec/util.encodings: Fix syntax
This commit is contained in:
parent
f6775e1e2c
commit
546aedf27a
1 changed files with 2 additions and 2 deletions
|
@ -6,14 +6,14 @@ describe("util.encodings", function ()
|
|||
describe("#encode()", function()
|
||||
it("should work", function ()
|
||||
assert.is.equal(encodings.base64.encode(""), "");
|
||||
assert.is.equal(encodings.base64.encode('coucou') "Y291Y291");
|
||||
assert.is.equal(encodings.base64.encode('coucou'), "Y291Y291");
|
||||
assert.is.equal(encodings.base64.encode("\0\0\0"), "AAAA");
|
||||
end);
|
||||
end);
|
||||
describe("#decode()", function()
|
||||
it("should work", function ()
|
||||
assert.is.equal(encodings.base64.decode(""), "");
|
||||
assert.is.equal(encodings.base64.decode('Y291Y291') "coucou");
|
||||
assert.is.equal(encodings.base64.decode('Y291Y291'), "coucou");
|
||||
assert.is.equal(encodings.base64.decode("AAAA"), "\0\0\0");
|
||||
end);
|
||||
end);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue