inspec/test/unit/resources/postfix_conf_test.rb
David Gasper 52ae5e434b Add docs and unit tests, remove .travis.yml
Signed-off-by: David Gasper <dmgasper@osuosl.org>
2019-08-08 13:54:35 -07:00

14 lines
439 B
Ruby

require "helper"
require "inspec/resource"
require "inspec/resources/postfix_conf"
describe "Inspec::Resources::Postfix_Conf" do
it 'test default parsing of main.cf on centos 7' do
resource = MockLoader.new(:centos7).load_resource("postfix_conf")
result = { "test_parameter" => "value", "other_test_param" => "$value" }
_(resource.params).must_equal result
_(resource.value(%w{test_parameter})).must_equal "value"
end
end