1 describe package("nftables") do
2 it { should be_installed }
5 describe service("nftables") do
6 it { should be_enabled }
7 it { should be_running }
10 describe file("/etc/nftables.conf") do
12 its(:content) { should match(/echo-request.*accept/) }
13 its(:content) { should match(/http.*accept/) }
14 its(:content) { should match(/https.*accept/) }