Felipe Zipitria 2a61498fa4
test(default): add inspec for base and maps
Signed-off-by: Felipe Zipitria <fzipitria@perceptyx.com>
2020-06-07 21:47:18 -03:00

10 lines
153 B
Ruby

# frozen_string_literal: true
control 'Postfix mysql' do
title 'should be installed'
describe port(25) do
it { should be_listening }
end
end