Comparison

spec/util_random_spec.lua @ 8236:4878e4159e12

Port tests to the `busted` test runner
author Waqas Hussain <waqas20@gmail.com>
date Fri, 15 Sep 2017 17:07:57 -0400
child 8450:3a9a3d90c44c
comparison
equal deleted inserted replaced
8235:7d9a2c200736 8236:4878e4159e12
1
2 local random = require "util.random";
3
4 describe("util.random", function()
5 describe("#bytes()", function()
6 it("should return a string", function()
7 assert.is_string(random.bytes(16));
8 end);
9
10 it("should return the requested number of bytes", function()
11 -- Makes no attempt at testing how random the bytes are,
12 -- just that it returns the number of bytes requested
13
14 for i = 1, 255 do
15 assert.are.equal(i, #random.bytes(i));
16 end
17 end);
18 end);
19 end);