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