Sha256: b3827d029b065a4b34f1fdde86526b7615d312a0a5a4d921301e702bad72560d

Contents?: true

Size: 1.32 KB

Versions: 5

Compression:

Stored size: 1.32 KB

Contents

require File.expand_path(File.join(File.dirname(__FILE__), '..', 'spec_helper.rb'))
require File.expand_path(File.join(File.dirname(__FILE__), '..', '..', 'lib', 'whiskey_disk'))

integration_spec do
  describe 'when configured for a remote deployment' do
    before do
      setup_deployment_area
    end
  
    describe 'and deploying on a different branch than originally deployed' do
      before do
        @config = scenario_config('remote/deploy.yml')
        @args = "--path=#{@config} --to=project:remote"
        run_setup(@args)
        run_deploy(@args)

        @args = "--path=#{@config} --to=project:remote-on-other-branch"
        File.unlink(deployed_file('project/README'))  # modify the deployed checkout
      end
      
      it 'updates the checkout of the repository on the target path' do
        run_deploy(@args)
        File.exists?(deployed_file('project/README')).should == true
      end    

      it 'has the working copy set to the new branch' do
        run_deploy(@args)
        current_branch('project').should == 'no_rake_hooks'
      end

      it 'reports the remote deployment as successful' do
        run_deploy(@args)
        File.read(integration_log).should =~ /vagrant => succeeded/
      end

      it 'exits with a true status' do
        run_deploy(@args).should == true
      end
    end
  end
end

Version data entries

5 entries across 5 versions & 3 rubygems

Version Path
ol-whisk_deploy-0.6.25 spec/integration/branch_switching_spec.rb
ol-whisk_deploy-0.6.26 spec/integration/branch_switching_spec.rb
whisk_deploy-0.6.26 spec/integration/branch_switching_spec.rb
whiskey_disk-0.6.24 spec/integration/branch_switching_spec.rb
whiskey_disk-0.6.23 spec/integration/branch_switching_spec.rb