metasploitable3/chef/cookbooks/metasploitable/test/linux/sinatra.rb
2017-08-11 13:36:04 -05:00

8 lines
147 B
Ruby

describe service('sinatra') do
it { should be_enabled }
it { should be_running }
end
describe port('8181') do
it { should be_listening }
end