mirror of
https://github.com/dev-sec/linux-baseline
synced 2025-02-17 10:18:24 +00:00
12 lines
221 B
Ruby
12 lines
221 B
Ruby
require 'serverspec'
|
|
require 'pathname'
|
|
|
|
include Serverspec::Helper::Exec
|
|
include Serverspec::Helper::DetectOS
|
|
|
|
RSpec.configure do |c|
|
|
c.before :all do
|
|
c.os = backend(Serverspec::Commands::Base).check_os
|
|
end
|
|
end
|
|
|