Sha256: e66c7cda83b3b6dd537077d0ba8a1ee301a4e5bb7a1f196bd8d1a6df006cebfc

Contents?: true

Size: 672 Bytes

Versions: 29

Compression:

Stored size: 672 Bytes

Contents

require "spec_helper"
require "octopolo/scripts/new_staging"

module Octopolo
  module Scripts
    describe NewStaging do
      subject { NewStaging.new }

      context "#execute" do
        it "delegates to DatedBranchCreator to create the branch with default delete flag" do
          DatedBranchCreator.should_receive(:perform).with(Git::STAGING_PREFIX, false)
          subject.execute
        end
        it "delegates to DatedBranchCreator to create the branch with delete flag" do
          DatedBranchCreator.should_receive(:perform).with(Git::STAGING_PREFIX, true)
          subject.execute(:delete_old_branches => true)
        end
      end
    end
  end
end

Version data entries

29 entries across 29 versions & 1 rubygems

Version Path
octopolo-1.12.0 spec/octopolo/scripts/new_staging_spec.rb
octopolo-1.11.4 spec/octopolo/scripts/new_staging_spec.rb
octopolo-1.11.3 spec/octopolo/scripts/new_staging_spec.rb
octopolo-1.11.1 spec/octopolo/scripts/new_staging_spec.rb
octopolo-1.11.0 spec/octopolo/scripts/new_staging_spec.rb
octopolo-1.9.0 spec/octopolo/scripts/new_staging_spec.rb
octopolo-1.8.1 spec/octopolo/scripts/new_staging_spec.rb
octopolo-1.8.0 spec/octopolo/scripts/new_staging_spec.rb
octopolo-1.7.1 spec/octopolo/scripts/new_staging_spec.rb
octopolo-1.7.0 spec/octopolo/scripts/new_staging_spec.rb
octopolo-1.6.0 spec/octopolo/scripts/new_staging_spec.rb
octopolo-1.5.3 spec/octopolo/scripts/new_staging_spec.rb
octopolo-1.5.2 spec/octopolo/scripts/new_staging_spec.rb
octopolo-1.5.1 spec/octopolo/scripts/new_staging_spec.rb
octopolo-1.5.0 spec/octopolo/scripts/new_staging_spec.rb
octopolo-1.4.0 spec/octopolo/scripts/new_staging_spec.rb
octopolo-1.3.0 spec/octopolo/scripts/new_staging_spec.rb
octopolo-1.2.1 spec/octopolo/scripts/new_staging_spec.rb
octopolo-1.2.0 spec/octopolo/scripts/new_staging_spec.rb
octopolo-1.1.1 spec/octopolo/scripts/new_staging_spec.rb