inspec/test/unit/resources/ksh_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

25 lines
693 B
Ruby

require 'helper'
describe Inspec::Resources::Ksh do
let(:x) { rand.to_s }
let(:resource) { load_resource('ksh', '$("'+x+'")') }
it 'prints as a ksh command' do
resource.to_s.must_equal 'KornShell command $("'+x+'")'
end
it 'wraps the command' do
resource.command.must_equal "ksh -c \\$\\(\\\"#{x}\\\"\\)"
end
it 'can specify an executable path' do
resource = load_resource('ksh', '$("'+x+'")', path: '/bin/ksh')
resource.command.must_equal "/bin/ksh -c \\$\\(\\\"#{x}\\\"\\)"
end
it 'can specify a arguments' do
resource = load_resource('ksh', '$("'+x+'")', args: '-x -c')
resource.command.must_equal "ksh -x -c \\$\\(\\\"#{x}\\\"\\)"
end
end