Sha256: 376f23f915bf6df2169e2e74b40bd61eaf3225baf970394a7de0365ce789a706

Contents?: true

Size: 1.19 KB

Versions: 3

Compression:

Stored size: 1.19 KB

Contents

require File.expand_path("../../spec_helper", File.dirname(__FILE__))

describe Sprinkle::Installers::OpensolarisPkg do

  before do
    @package = mock(Sprinkle::Package, :name => 'package')
  end

  def create_pkg(pkgs, &block)
    Sprinkle::Installers::OpensolarisPkg.new(@package, pkgs, &block)
  end

  describe 'when created' do

    it 'should accept a single package to install' do
      @installer = create_pkg 'ruby'
      @installer.packages.should == [ 'ruby' ]
    end

    it 'should accept an array of packages to install' do
      @installer = create_pkg %w( gcc gdb g++ )
      @installer.packages.should == ['gcc', 'gdb', 'g++']
    end

  end

  describe 'during installation' do

    before do
      @installer = create_pkg 'ruby' do
        pre :install, 'op1'
        post :install, 'op2'
      end
      @install_commands = @installer.send :install_commands
    end

    it 'should invoke the freebsd_pkg installer for all specified packages' do
      @install_commands.should =~ /pkg install ruby/
    end

    it 'should automatically insert pre/post commands for the specified package' do
      @installer.send(:install_sequence).should == [ 'op1', 'pkg install ruby', 'op2' ]
    end

  end

end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
sprinkle-0.7.4 spec/sprinkle/installers/opensolaris_pkg_spec.rb
sprinkle-0.7.3 spec/sprinkle/installers/opensolaris_pkg_spec.rb
sprinkle-0.7.2 spec/sprinkle/installers/opensolaris_pkg_spec.rb