# InSpec test for recipe irrigate-neo4j::support_user

describe user('support') do
  it { should exist }
  its('groups') { should eq %w(support dd-agent neo4j) }
  its('uid') { should eq 1301 }
end

describe file('/home/support/.ssh/authorized_keys') do
  it { should exist }
  its('owner') { should eq 'support' }
end
