Sha256: a6e49b0be78c3ba74899a8f863fe6643fdf9dfbb0423c4aad9602c96bbbca927
Contents?: true
Size: 527 Bytes
Versions: 85
Compression:
Stored size: 527 Bytes
Contents
require 'spec_helper' set :os, :family => 'redhat' 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 it { should be_installed.by('rpm').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