mirror of https://github.com/bjc/prosody
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
216 B
11 lines
216 B
|
10 years ago
|
-- Makes no attempt at testing how random the bytes are,
|
||
|
|
-- just that it returns the number of bytes requested
|
||
|
|
|
||
|
|
function bytes(bytes)
|
||
|
|
assert_is(bytes(16));
|
||
|
|
|
||
|
|
for i = 1, 255 do
|
||
|
|
assert_equal(i, #bytes(i));
|
||
|
|
end
|
||
|
|
end
|