xref: /freebsd/libexec/nuageinit/tests/addgroup.lua (revision 030c387f5d74a66d0d5950e3450d6da24237fb2e)
1#!/usr/libexec/flua
2
3local n = require("nuage")
4
5if n.addgroup() then
6	n.err("addgroup should not accept empty value")
7end
8if n.addgroup("plop") then
9	n.err("addgroup should not accept empty value")
10end
11local gr = {}
12gr.name = "impossible_groupname"
13local res = n.addgroup(gr)
14if not res then
15	n.err("valid addgroup should return a path")
16end
17