Sha256: 726d22ace4856170bb1751c974cad7880de1505b2b58f3d25d4296ba91460de8

Contents?: true

Size: 828 Bytes

Versions: 3

Compression:

Stored size: 828 Bytes

Contents

require 'spec_helper'

RSpec.describe 'deploy', type: :rake do
  describe 'deploy:force_unlock' do
    it 'deploy force_unlock' do
      expect { invoke_all }.to output(output_file('deploy_force_unlock')).to_stdout
    end
  end

  describe 'deploy:link_shared_paths' do
    it 'deploy link_shared_paths' do
      # expect { invoke_all }.to output(output_file('deploy_link_shared_paths')).to_stdout
    end
  end

  describe 'deploy:cleanup' do
    it 'deploy cleanup' do
      expect { invoke_all }.to output(output_file('deploy_cleanup')).to_stdout
    end
  end

  describe 'rollback' do
    it 'rollback' do
      expect { invoke_all }.to output(output_file('rollback')).to_stdout
    end
  end

  describe 'setup' do
    it 'setup' do
      expect { invoke_all }.to output(output_file('setup')).to_stdout
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
mina-1.2.4 spec/tasks/deploy_spec.rb
mina-1.2.3 spec/tasks/deploy_spec.rb
mina-1.2.2 spec/tasks/deploy_spec.rb