mirror of
https://github.com/inspec/inspec
synced 2024-11-23 05:03:07 +00:00
1c66679e46
Signed-off-by: Vasu1105 <vasundhara.jagdale@chef.io>
28 lines
890 B
Ruby
28 lines
890 B
Ruby
require "helper"
|
|
require "inspec/resource"
|
|
require "inspec/resources/bash"
|
|
|
|
describe "Inspec::Resources::Bash" do
|
|
let(:x) { rand.to_s }
|
|
let(:resource) { load_resource("bash", '$("' + x + '")') }
|
|
|
|
it "prints as a bash command" do
|
|
_(resource.resource_id).must_equal "$(\"#{x}\")"
|
|
_(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.resource_id).must_equal "$(\"#{x}\")"
|
|
_(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
|