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.5 spec/command/redhat/package_spec.rb
specinfra-2.82.4 spec/command/redhat/package_spec.rb
specinfra-2.82.3 spec/command/redhat/package_spec.rb
specinfra-2.82.2 spec/command/redhat/package_spec.rb
specinfra-2.82.1 spec/command/redhat/package_spec.rb
specinfra-2.82.0 spec/command/redhat/package_spec.rb
specinfra-2.81.0 spec/command/redhat/package_spec.rb
specinfra-2.80.0 spec/command/redhat/package_spec.rb
specinfra-2.79.0 spec/command/redhat/package_spec.rb
specinfra-2.78.2 spec/command/redhat/package_spec.rb
specinfra-2.78.1 spec/command/redhat/package_spec.rb
specinfra-2.78.0 spec/command/redhat/package_spec.rb
specinfra-2.77.3 spec/command/redhat/package_spec.rb
specinfra-2.77.2 spec/command/redhat/package_spec.rb
specinfra-2.77.1 spec/command/redhat/package_spec.rb
specinfra-2.77.0 spec/command/redhat/package_spec.rb
specinfra-2.76.9 spec/command/redhat/package_spec.rb
specinfra-2.76.8 spec/command/redhat/package_spec.rb
specinfra-2.76.7 spec/command/redhat/package_spec.rb
specinfra-2.76.6 spec/command/redhat/package_spec.rb