inspec/test/unit/resource_audit_policy_test.rb
Christoph Hartmann 8fff2ee989 add author header
2015-10-06 18:55:44 +02:00

14 lines
333 B
Ruby

# encoding: utf-8
# author: Christoph Hartmann
# author: Dominik Richter
require 'helper'
require 'vulcano/resource'
describe 'Vulcano::Resources::AuditPolicy' do
let(:resource) { load_resource('audit_policy') }
it 'check audit policy parsing' do
_(resource.send('User Account Management')).must_equal 'Success'
end
end