inspec/test/unit/resources/script_test.rb

20 lines
611 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'
require 'vulcano/resource'
describe 'Vulcano::Resources::Script' do
ps1_script = <<-EOH
# call help for get command
Get-Help Get-Command
EOH
it 'check if script for windows is properly generated ' do
resource = MockLoader.new(:windows).load_resource('script', ps1_script)
_(resource.command).must_equal 'powershell -encodedCommand IAAgACAAIAAjACAAYwBhAGwAbAAgAGgAZQBsAHAAIABmAG8AcgAgAGcAZQB0ACAAYwBvAG0AbQBhAG4AZAAKACAAIAAgACAARwBlAHQALQBIAGUAbABwACAARwBlAHQALQBDAG8AbQBtAGEAbgBkAAoA'
end
end