mirror of
https://github.com/dev-sec/linux-baseline
synced 2024-11-27 13:31:18 +00:00
15 lines
474 B
Ruby
15 lines
474 B
Ruby
require 'spec_helper'
|
|
|
|
describe 'preloaded modules' do
|
|
describe file('/etc/initramfs-tools/modules') do
|
|
before do
|
|
if (RSpec.configuration.os[:family] != 'Debian')
|
|
pending "initramfs creation not ported to this platform yet"
|
|
end
|
|
end
|
|
|
|
its(:content) { should match /^ghash-clmulni-intel/ }
|
|
its(:content) { should match /^aesni-intel/ }
|
|
its(:content) { should match /^kvm-intel/ }
|
|
end
|
|
end
|