mirror of
https://github.com/inspec/inspec
synced 2024-12-11 22:02:47 +00:00
13 lines
219 B
Ruby
13 lines
219 B
Ruby
# encoding: utf-8
|
|
script = <<-EOH
|
|
Write-Output 'hello'
|
|
EOH
|
|
|
|
describe powershell(script) do
|
|
its('stdout') { should eq 'hello' }
|
|
end
|
|
|
|
# legacy test
|
|
describe script(script) do
|
|
its('stdout') { should eq 'hello' }
|
|
end
|