inspec/test/unit/resources/mount_test.rb
Ryan Davis adaf2bc364 Removed aws resource requiring from test/helper and inspec/resource.
This speeds up parallel unit test runs from a very consistent 2:49 to
a very consistent 1:53, or a 33% reduction.

Signed-off-by: Ryan Davis <zenspider@chef.io>
2019-05-29 17:58:02 -07:00

31 lines
1.1 KiB
Ruby

require 'helper'
describe Inspec::Resources::FileResource do
let(:root_resource) { load_resource('mount', '/') }
it 'parses the mount data properly' do
root_resource.send(:device).must_equal('/dev/xvda1')
root_resource.send(:type).must_equal('ext4')
root_resource.send(:options).must_equal(['rw','discard'])
root_resource.send(:count).must_equal(1)
end
let(:iso_resource) { load_resource('mount', '/mnt/iso-disk') }
it 'parses the mount data properly' do
iso_resource.send(:device).must_equal('/root/alpine-3.3.0-x86_64_2.iso')
iso_resource.send(:type).must_equal('iso9660')
iso_resource.send(:options).must_equal(['ro'])
iso_resource.send(:count).must_equal(2)
end
let(:ws_resource) { load_resource('mount', '/mnt/Research & Development') }
it 'parses the mount data properly even if whitespaces are included' do
ws_resource.send(:device).must_equal('//fileserver.corp.internal/Research & Development')
ws_resource.send(:type).must_equal('cifs')
ws_resource.send(:options).must_equal(['rw','vers=1.0'])
ws_resource.send(:count).must_equal(1)
end
end