mirror of
https://github.com/inspec/inspec
synced 2024-11-13 08:27:08 +00:00
659b4b373a
Signed-off-by: Miah Johnson <miah@chia-pet.org>
16 lines
456 B
Ruby
16 lines
456 B
Ruby
# 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
|