mirror of
https://github.com/opnsense/src.git
synced 2026-04-23 15:19:31 -04:00
9 lines
210 B
Lua
9 lines
210 B
Lua
|
|
local n = require("nuage")
|
||
|
|
print(n.dirname("/my/path/path1"))
|
||
|
|
if n.dirname("path") then
|
||
|
|
nuage.err("Expecting nil for n.dirname(\"path\")")
|
||
|
|
end
|
||
|
|
if n.dirname() then
|
||
|
|
nuage.err("Expecting nil for n.dirname")
|
||
|
|
end
|