inspec/test/unit/resources/mysql_conf_test.rb
Miah Johnson 6c19e81a06 Remove authors tags from source files.
Signed-off-by: Miah Johnson <miah@chia-pet.org>
2019-05-28 12:47:39 -07:00

11 lines
337 B
Ruby

require 'helper'
describe 'Inspec::Resources::MysqlConf' do
it 'verify mysql.conf config parsing' do
resource = load_resource('mysql_conf', '/etc/mysql/my.cnf')
_(resource.client['port']).must_equal '3306'
_(resource.mysqld['user']).must_equal 'mysql'
_(resource.mysqld['key_buffer_size']).must_equal '16M'
end
end