inspec/test/unit/resources/zfs_dataset_test.rb
Miah Johnson 2a1b1d8e88 Remove all leading newlines.
Signed-off-by: Miah Johnson <miah@chia-pet.org>
2019-05-31 11:43:44 -07:00

15 lines
539 B
Ruby

require 'helper'
require 'inspec/resource'
require 'inspec/resources/zfs_dataset'
describe Inspec::Resources::ZfsDataset do
let(:loader) { MockLoader.new(:freebsd10) }
let(:tank_tmp_resource) { loader.send('load_resource', 'zfs_dataset', 'tank/tmp') }
it 'parses the ZFS dataset data properly' do
tank_tmp_resource.send(:mountpoint).must_equal('/tmp')
tank_tmp_resource.send(:type).must_equal('filesystem')
tank_tmp_resource.send(:exec).must_equal('off')
tank_tmp_resource.send(:setuid).must_equal('off')
end
end