control 'backup' do
  describe file('/usr/local/sbin/neo4j-backup.sh') do
    it { should exist }
    it { should be_executable }
  end

  describe cron 'root' do
    it { should have_entry('15 4 * * * /usr/local/sbin/neo4j-backup.sh') }
  end
end
