Sha256: 44e1a818005167643091d104f97e4b23cf8778cc8011cef3297690e12b8eb4c7

Contents?: true

Size: 1.02 KB

Versions: 99

Compression:

Stored size: 1.02 KB

Contents

require 'spec_helper'

property[:os] = nil
set :os, { :family => 'redhat' }

describe  get_command(:check_package_is_installed, 'telnet') do
  it { should eq 'rpm -q telnet' }
end

describe  get_command(:check_package_is_installed, 'telnet', '0.17-48.el6.x86_64') do
  it { should eq 'rpm -q telnet | grep -w -- telnet\\-0\\.17\\-48\\.el6\\.x86_64' }
end

describe  get_command(:check_package_is_installed, 'linux-headers-$(uname -r)') do
  it 'should be escaped (that is, command substitution should not work' do
    should eq 'rpm -q linux-headers-\\$\\(uname\\ -r\\)'
  end
end

describe get_command(:install_package, 'telnet') do
  it { should eq "yum -y  install telnet" }
end

describe get_command(:install_package, 'telnet', '0.17-48.el6.x86_64') do
  it { should eq "yum -y  install telnet-0.17-48.el6.x86_64" }
end

describe get_command(:install_package, 'linux-headers-$(uname -r)') do
  it 'should be escaped (that is, command substitution should no work)' do
    should eq "yum -y  install linux-headers-\\$\\(uname\\ -r\\)"
  end
end

Version data entries

99 entries across 99 versions & 1 rubygems

Version Path
specinfra-2.82.25 spec/command/redhat/package_spec.rb
specinfra-2.82.24 spec/command/redhat/package_spec.rb
specinfra-2.82.23 spec/command/redhat/package_spec.rb
specinfra-2.82.22 spec/command/redhat/package_spec.rb
specinfra-2.82.21 spec/command/redhat/package_spec.rb
specinfra-2.82.20 spec/command/redhat/package_spec.rb
specinfra-2.82.19 spec/command/redhat/package_spec.rb
specinfra-2.82.18 spec/command/redhat/package_spec.rb
specinfra-2.82.17 spec/command/redhat/package_spec.rb
specinfra-2.82.16 spec/command/redhat/package_spec.rb
specinfra-2.82.15 spec/command/redhat/package_spec.rb
specinfra-2.82.14 spec/command/redhat/package_spec.rb
specinfra-2.82.13 spec/command/redhat/package_spec.rb
specinfra-2.82.12 spec/command/redhat/package_spec.rb
specinfra-2.82.11 spec/command/redhat/package_spec.rb
specinfra-2.82.10 spec/command/redhat/package_spec.rb
specinfra-2.82.9 spec/command/redhat/package_spec.rb
specinfra-2.82.8 spec/command/redhat/package_spec.rb
specinfra-2.82.7 spec/command/redhat/package_spec.rb
specinfra-2.82.6 spec/command/redhat/package_spec.rb