mirror of
https://github.com/inspec/inspec
synced 2024-11-10 15:14:23 +00:00
9 lines
191 B
Ruby
9 lines
191 B
Ruby
# encoding: utf-8
|
|
# author: Dominik Richter
|
|
# author: Christoph Hartmann
|
|
|
|
return unless command('ssh').exist?
|
|
|
|
describe ssh_config do
|
|
its('SendEnv') { should include('GORDON_CLIENT') }
|
|
end
|