2019-06-11 22:24:35 +00:00
|
|
|
require "helper"
|
|
|
|
require "inspec/resource"
|
|
|
|
require "inspec/resources/inetd_conf"
|
2015-09-05 19:23:21 +00:00
|
|
|
|
2019-06-11 22:24:35 +00:00
|
|
|
describe "Inspec::Resources::InetdConf" do
|
|
|
|
it "verify limits.conf config parsing" do
|
|
|
|
resource = load_resource("inetd_conf")
|
|
|
|
_(resource.send("shell")).must_be_nil
|
|
|
|
_(resource.send("login")).must_be_nil
|
|
|
|
_(resource.send("ftp")).must_equal %w{stream tcp nowait root /usr/sbin/in.ftpd in.ftpd}
|
2022-06-02 11:22:04 +00:00
|
|
|
_(resource.send("resource_id")).must_equal "/etc/inetd.conf"
|
2015-09-05 19:23:21 +00:00
|
|
|
end
|
|
|
|
end
|