# Inspec test for recipe irrigate-memcached::default

# The Inspec reference, with examples and extensive documentation, can be
# found at http://inspec.io/docs/reference/resources/

describe port(11211) do
  it { should be_listening }
  its('processes') { should include 'memcached' }
end

describe firewalld do
  it { should be_installed }
  it { should be_running }
  its('default_zone') { should eq 'drop' }
end
