mirror of
https://github.com/inspec/inspec
synced 2024-11-27 15:10:44 +00:00
16 lines
320 B
Ruby
16 lines
320 B
Ruby
|
# encoding: utf-8
|
||
|
|
||
|
# script that may have multiple lines
|
||
|
vbscript = <<-EOH
|
||
|
WScript.Echo "hello"
|
||
|
EOH
|
||
|
|
||
|
describe vbscript(vbscript) do
|
||
|
its('stdout') { should eq "hello\r\n" }
|
||
|
end
|
||
|
|
||
|
# ensure that we do not require a newline
|
||
|
describe vbscript("Wscript.Stdout.Write \"hello\"") do
|
||
|
its('stdout') { should eq 'hello' }
|
||
|
end
|