Serverspec

Serverspec : Programming Language

php_spec.rb

# php/php-mysql insall check
%w{ php php-mysql }.each do |pkg|
  describe package(pkg) do
    it { should be_installed }
  end
end