# Inspec test for recipe irrigate-trend-micro::default

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

# Test if ds_agent service is running
describe systemd_service('ds_agent') do
  it { should be_installed }
  it { should be_enabled }
  it { should be_running }
end

# Test if dsa_control file exists
describe file('/opt/ds_agent/dsa_control') do
  it { should exist }
end
