util.random: Remove obsolete noop seed function

This commit is contained in:
Kim Alvefur 2017-09-16 17:22:51 +02:00
parent 1a74016edf
commit 880a7c3e32
2 changed files with 0 additions and 10 deletions

View file

@ -22,10 +22,4 @@ describe("util.uuid", function()
end
end);
end);
describe("#seed()", function()
it("should return nothing", function()
assert.is_nil(uuid.seed("random string here"), "seed doesn't return anything");
end);
end);
end);

View file

@ -11,9 +11,6 @@ if ok then return crand; end
local urandom, urandom_err = io.open("/dev/urandom", "r");
local function seed()
end
local function bytes(n)
return urandom:read(n);
end
@ -25,6 +22,5 @@ if not urandom then
end
return {
seed = seed;
bytes = bytes;
};