metasploitable3/chef/cookbooks/metasploitable/test/linux/cups.rb
2017-05-30 16:25:42 -05:00

12 lines
191 B
Ruby

# Inspec Tests for cups
# Tests for the service
describe service'cups' do
it { should be_running }
it { should be_enabled }
end
describe port('631') do
it { should be_listening }
end