You are creating a unit test using ChefSpec. Complete the code snippet to test the apache2 service. it 'installs the apache2 package' do expect(chef_run) to install package['apache2') end
it starts and enables the apache2 service' do expect(chef_run) to start_service('apache2') <missing code>