control 'restart_user' do
  title 'Selenium restart user tests'

  describe user('selenium_restart_user') do
    it { should exist }
    its('uid') { should eq 2000 }
  end

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