inspec/test/unit/resources/powershell_test.rb

27 lines
725 B
Ruby
Raw Normal View History

2015-10-07 11:13:37 +00:00
# encoding: utf-8
# author: Christoph Hartmann
# author: Dominik Richter
require 'helper'
2015-10-26 03:04:18 +00:00
require 'inspec/resource'
2015-10-07 11:13:37 +00:00
2016-03-18 22:22:15 +00:00
describe 'Inspec::Resources::Powershell' do
2015-10-07 11:13:37 +00:00
ps1_script = <<-EOH
# call help for get command
Get-Help Get-Command
EOH
2016-03-18 14:47:00 +00:00
it 'check if `powershell` for windows is properly generated ' do
resource = MockLoader.new(:windows).load_resource('powershell', ps1_script)
2016-09-05 10:12:34 +00:00
# string should be the same
_(resource.command.to_s).must_equal ps1_script
2016-03-18 14:47:00 +00:00
end
it 'check if legacy `script` for windows is properly generated ' do
2015-10-07 11:13:37 +00:00
resource = MockLoader.new(:windows).load_resource('script', ps1_script)
2016-09-05 10:12:34 +00:00
# string should be the same
_(resource.command.to_s).must_equal ps1_script
2015-10-07 11:13:37 +00:00
end
end