Sha256: 9e7688342a962c4c8f7f42d8994491f52f2cf7cf101bd6559c8055e269c0a115

Contents?: true

Size: 771 Bytes

Versions: 14

Compression:

Stored size: 771 Bytes

Contents

require 'spec_helper'

describe 'postgresql::client', :type => :class do
  let :facts do
    {
      :osfamily => 'Debian',
      :operatingsystem => 'Debian',
      :operatingsystemrelease => '6.0',
    }
  end

  describe 'with parameters' do
    let :params do
      {
        :package_ensure => 'absent',
        :package_name => 'mypackage',
      }
    end

    it 'should modify package' do
      should contain_package("postgresql-client").with({
        :ensure => 'absent',
        :name => 'mypackage',
        :tag => 'postgresql',
      })
    end
  end

  describe 'with no parameters' do
    it 'should create package with postgresql tag' do
      should contain_package('postgresql-client').with({
        :tag => 'postgresql',
      })
    end
  end
end

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
freighthop-0.6.1 modules/postgresql/spec/unit/classes/client_spec.rb
freighthop-0.6.0 modules/postgresql/spec/unit/classes/client_spec.rb
freighthop-0.5.2 modules/postgresql/spec/unit/classes/client_spec.rb
freighthop-0.5.1 modules/postgresql/spec/unit/classes/client_spec.rb
freighthop-0.5.0 modules/postgresql/spec/unit/classes/client_spec.rb
freighthop-0.4.1 modules/postgresql/spec/unit/classes/client_spec.rb
freighthop-0.4.0 modules/postgresql/spec/unit/classes/client_spec.rb
freighthop-0.3.3 modules/postgresql/spec/unit/classes/client_spec.rb
freighthop-0.3.2 modules/postgresql/spec/unit/classes/client_spec.rb
freighthop-0.3.1 modules/postgresql/spec/unit/classes/client_spec.rb
freighthop-0.3.0 modules/postgresql/spec/unit/classes/client_spec.rb
freighthop-0.2.1 modules/postgresql/spec/unit/classes/client_spec.rb
freighthop-0.2.0 modules/postgresql/spec/unit/classes/client_spec.rb
freighthop-0.1.0 modules/postgresql/spec/unit/classes/client_spec.rb