mirror of
https://github.com/inspec/inspec
synced 2024-11-27 15:10:44 +00:00
47eabbb221
Signed-off-by: Christoph Hartmann <chris@lollyrock.com>
7 lines
166 B
Ruby
7 lines
166 B
Ruby
# encoding: utf-8
|
|
if ENV['DOCKER'] && os.linux?
|
|
describe virtualization do
|
|
its('system') { should eq 'docker' }
|
|
its('role') { should eq 'guest' }
|
|
end
|
|
end
|