Sha256: 96963e86f91d7baf2331b3a0028d651a88a6331388db51c2d696f036efdc9066
Contents?: true
Size: 422 Bytes
Versions: 85
Compression:
Stored size: 422 Bytes
Contents
require 'spec_helper' set :os, :family => 'arch' describe package('httpd') do it { should be_installed } end describe package('httpd') do it { should be_installed.with_version('2.2.15-28.el6') } end describe package('httpd') do let(:stdout) { "2.2.15\n" } its(:version) { should eq '2.2.15' } its(:version) { should > '2.2.14' } its(:version) { should < '2.2.16' } its(:version) { should > '2.2.9' } end
Version data entries
85 entries across 85 versions & 4 rubygems