mirror of
https://github.com/inspec/inspec
synced 2024-11-23 21:23:29 +00:00
adaf2bc364
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>
14 lines
328 B
Ruby
14 lines
328 B
Ruby
|
|
require 'helper'
|
|
|
|
describe 'Inspec::Resources::VbScript' do
|
|
|
|
vb_script = <<-EOH
|
|
WScript.Echo "hello vbscript"
|
|
EOH
|
|
|
|
it 'check if `vbscript` for windows is properly generated ' do
|
|
resource = MockLoader.new(:windows).load_resource('vbscript', vb_script)
|
|
_(resource.command.to_s).must_include vb_script
|
|
end
|
|
end
|