lamont-cookbooks/multipackage

View on GitHub
integration/default/serverspec/localhost/multipackage_spec.rb

Summary

Maintainability
A
0 mins
Test Coverage
require "spec_helper"

describe "multipackage" do
  %{zsh tcsh bash}.each do |pkg|
    it "should have installed #{pkg}" do
      expect(package(pkg)).to be_installed
    end
  end
end