Skip to content

Commit

Permalink
Merge branch 'master' into skip-gpg-sign-option
Browse files Browse the repository at this point in the history
  • Loading branch information
jcouball committed Aug 17, 2022
2 parents 8743556 + 609ab8b commit 049b379
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/workflows/continuous_integration.yml
Expand Up @@ -5,6 +5,7 @@ on:
branches: [master]
pull_request:
branches: [master]
workflow_dispatch:

jobs:
continuous_integration_build:
Expand Down
10 changes: 8 additions & 2 deletions tests/units/test_lib.rb
@@ -1,6 +1,7 @@
#!/usr/bin/env ruby

require File.dirname(__FILE__) + '/../test_helper'
require "fileutils"

# tests all the low level git communication
#
Expand Down Expand Up @@ -51,8 +52,13 @@ def test_commit_with_no_verify
move_file(pre_commit_path, pre_commit_path_bak)

# Adds a pre-commit file that should throw an error
create_file(pre_commit_path, 'echo Pre-commit file. Shoud not execute; exit 1') # Error when executed
File.chmod(0111, pre_commit_path)
create_file(pre_commit_path, <<~PRE_COMMIT_SCRIPT)
#!/bin/sh
echo "pre-commit script exits with an error"
exit 1
PRE_COMMIT_SCRIPT

FileUtils.chmod("+x", pre_commit_path)

create_file("#{@wdir}/test_file_2", 'content test_file_2')
@lib.add('test_file_2')
Expand Down

0 comments on commit 049b379

Please sign in to comment.