mirror of
https://github.com/inspec/inspec
synced 2024-11-23 21:23:29 +00:00
18 lines
474 B
Ruby
18 lines
474 B
Ruby
|
# encoding: utf-8
|
||
|
# author: Dominik Richter
|
||
|
# author: Christoph Hartmann
|
||
|
|
||
|
require 'helper'
|
||
|
require 'inspec/resource'
|
||
|
|
||
|
describe 'Inspec::Resources::RabbitmqConf' do
|
||
|
|
||
|
describe 'rabbitmq_config' do
|
||
|
it 'check rabbitmq config parsing' do
|
||
|
resource = load_resource('rabbitmq_config')
|
||
|
_(resource.params('rabbit', 'ssl_listeners')).must_equal [5671]
|
||
|
_(resource.params('rabbit', 'tcp_listeners')).must_equal({'127.0.0.1'=>5672, '::1'=>5672})
|
||
|
end
|
||
|
end
|
||
|
end
|