xref: /freebsd/libexec/nuageinit/tests/addgroup.lua (revision 215fd38e2915d142cb4b0245f137329ef4da5a12)
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