Class: CreateGithubRelease::Assertions::RemoteReleaseBranchDoesNotExist

Inherits:
CreateGithubRelease::AssertionBase show all
Defined in:
lib/create_github_release/assertions/remote_release_branch_does_not_exist.rb

Overview

Assert that the release branch does not exist in the remote repository

Instance Attribute Summary

Attributes inherited from CreateGithubRelease::AssertionBase

#project

Instance Method Summary collapse

Methods inherited from CreateGithubRelease::AssertionBase

#backtick_debug?, #error, #initialize, #print, #puts

Methods included from BacktickDebug

#`

Constructor Details

This class inherits a constructor from CreateGithubRelease::AssertionBase

Instance Method Details

#assert

This method returns an undefined value.

Assert that the release branch does not exist in the remote repository

Examples:

require 'create_github_release'

options = CreateGithubRelease::CommandLine::Options.new { |o| o.release_type = 'major' }
project = CreateGithubRelease::Project.new(options)
assertion = CreateGithubRelease::Assertions::RemoteReleaseBranchDoesNotExist.new(project)
begin
  assertion.assert
  puts 'Assertion passed'
rescue SystemExit
  puts 'Assertion failed'
end

Raises:

  • (SystemExit)

    if the assertion fails



32
33
34
35
36
37
38
39
40
41
# File 'lib/create_github_release/assertions/remote_release_branch_does_not_exist.rb', line 32

def assert
  print "Checking that the remote branch '#{project.release_branch}' does not exist..."
  `git ls-remote --heads --exit-code '#{project.remote}' '#{project.release_branch}' >/dev/null 2>&1`
  if $CHILD_STATUS.exitstatus == 2
    puts 'OK'
  else
    error 'Could not list branches' unless $CHILD_STATUS.success?
    error "'#{project.release_branch}' already exists"
  end
end