Sha256: 7bf41575b8854f409cc54c94c788545e94fed382b9dcb0d2cbf955a495f7ad27
Contents?: true
Size: 425 Bytes
Versions: 85
Compression:
Stored size: 425 Bytes
Contents
require 'spec_helper' set :os, :family => 'smartos' 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