mirror of
https://github.com/inspec/inspec
synced 2024-11-13 08:27:08 +00:00
a5309ea392
Signed-off-by: Ryan Davis <zenspider@chef.io>
12 lines
408 B
Ruby
12 lines
408 B
Ruby
require "helper"
|
|
require "inspec/resource"
|
|
require "inspec/resources/auditd_conf"
|
|
|
|
describe "Inspec::Resources::AuditDaemonConf" do
|
|
it "check audit daemon config parsing" do
|
|
resource = MockLoader.new(:windows).load_resource("auditd_conf")
|
|
_(resource.space_left_action).must_equal "SYSLOG"
|
|
_(resource.action_mail_acct).must_equal "root"
|
|
_(resource.tcp_listen_queue).must_equal "5"
|
|
end
|
|
end
|