mirror of
https://github.com/inspec/inspec
synced 2024-11-14 00:47:10 +00:00
29 lines
796 B
Ruby
29 lines
796 B
Ruby
# encoding: utf-8
|
|
# author: Christoph Hartmann
|
|
# author: Dominik Richter
|
|
|
|
require 'helper'
|
|
require 'inspec/resource'
|
|
|
|
describe Inspec::Resources::Bash do
|
|
let(:x) { rand.to_s }
|
|
let(:resource) { load_resource('bash', '$("'+x+'")') }
|
|
|
|
it 'prints as a bash command' do
|
|
resource.to_s.must_equal 'Bash command $("'+x+'")'
|
|
end
|
|
|
|
it 'wraps the command' do
|
|
resource.command.must_equal "bash -c \\$\\(\\\"#{x}\\\"\\)"
|
|
end
|
|
|
|
it 'can specify an executable path' do
|
|
resource = load_resource('bash', '$("'+x+'")', path: '/bin/bash')
|
|
resource.command.must_equal "/bin/bash -c \\$\\(\\\"#{x}\\\"\\)"
|
|
end
|
|
|
|
it 'can specify a arguments' do
|
|
resource = load_resource('bash', '$("'+x+'")', args: '-x -c')
|
|
resource.command.must_equal "bash -x -c \\$\\(\\\"#{x}\\\"\\)"
|
|
end
|
|
end
|