Sha256: 26ec21b4769b9f19f1167b0ad0b93e1795ee6c8dfce070e75f0064cf56b9d20d
Contents?: true
Size: 826 Bytes
Versions: 15
Compression:
Stored size: 826 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
15 entries across 15 versions & 1 rubygems