mirror of
https://github.com/inspec/inspec
synced 2024-11-11 07:34:15 +00:00
22 lines
457 B
Ruby
22 lines
457 B
Ruby
# encoding: utf-8
|
|
|
|
return unless os.windows?
|
|
|
|
# script that may have multiple lines
|
|
vbscript = <<-EOH
|
|
WScript.Echo "hello"
|
|
EOH
|
|
|
|
describe vbscript(vbscript) do
|
|
its('stdout') { should eq "hello\r\n" }
|
|
end
|
|
|
|
# remove whitespace \r\n from stdout
|
|
describe vbscript(vbscript) do
|
|
its('strip') { should eq "hello" }
|
|
end
|
|
|
|
# ensure that we do not require a newline
|
|
describe vbscript("Wscript.Stdout.Write \"hello\"") do
|
|
its('stdout') { should eq 'hello' }
|
|
end
|