Skip to content

Commit

Permalink
Merge pull request Bash-it#2280 from seefood/ira/bats-fix
Browse files Browse the repository at this point in the history
  • Loading branch information
seefood authored Jan 22, 2025
2 parents 2726eab + 39127f5 commit 0cfc448
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
bats-test:
strategy:
matrix:
os: [ubuntu-20.04, ubuntu-22.04, ubuntu-24.04, macos-14]
os: [ubuntu-20.04, ubuntu-24.04, macos-14]

runs-on: ${{ matrix.os }}

Expand Down
6 changes: 3 additions & 3 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
[submodule "test_lib/bats-core"]
path = test_lib/bats-core
url = https://github.com/bats-core/bats-core
branch = tags/v1.2.0
branch = tags/v1.9.0
[submodule "test_lib/bats-support"]
path = test_lib/bats-support
url = https://github.com/bats-core/bats-support
branch = tags/v0.3.0
[submodule "test_lib/bats-assert"]
path = test_lib/bats-assert
url = https://github.com/bats-core/bats-assert
branch = tags/v2.0.0
branch = tags/v2.1.0
[submodule "test_lib/bats-file"]
path = test_lib/bats-file
url = https://github.com/bats-core/bats-file
branch = tags/v0.3.0
branch = tags/v0.4.0
2 changes: 1 addition & 1 deletion test_lib/bats-core
Submodule bats-core updated 241 files
2 changes: 1 addition & 1 deletion test_lib/bats-file
Submodule bats-file updated 47 files
+38 −0 .github/workflows/tests.yml
+3 −0 .gitignore
+0 −11 .travis.yml
+24 −1 CHANGELOG.md
+121 −64 README.md
+36 −0 Vagrantfile
+1 −1 package.json
+2 −2 script/install-bats.sh
+261 −279 src/file.bash
+13 −11 src/temp.bash
+13 −13 test/50-assert-10-assert_exists.bats
+11 −11 test/50-assert-11-assert_not_exists.bats
+11 −11 test/51-assert-10-assert_file_exists.bats
+11 −11 test/51-assert-11-assert_file_not_exists.bats
+1 −1 test/52-assert-10-assert_file_executable.bats
+0 −0 test/52-assert-11-assert_file_not_executable.bats
+11 −11 test/53-assert-10-assert_link_exists.bats
+10 −10 test/53-assert-11-assert_link_not_exists.bats
+12 −12 test/54-assert-10-assert_character_exists.bats
+11 −11 test/54-assert-11-assert_character_not_exists.bats
+12 −12 test/55-assert-10-assert_block_exists.bats
+11 −11 test/55-assert-11-assert_block_not_exists.bats
+10 −10 test/56-assert-10-assert_fifo_exists.bats
+10 −10 test/56-assert-11-assert_fifo_not_exists.bats
+10 −10 test/57-assert-10-assert_socket_exists.bats
+10 −10 test/57-assert-11-assert_socket_not_exists.bats
+2 −1 test/58-assert-10-assert_equal_files.bats
+2 −1 test/58-assert-11-assert_not_equal_files.bats
+9 −4 test/59-assert-10-assert_file_owner.bats
+13 −7 test/59-assert-11-assert_not_file_owner.bats
+1 −2 test/60-assert-10-assert_file_permission.bats
+2 −3 test/60-assert-11-assert_file_no_permissions.bats
+11 −9 test/61-assert-10-size_zero.bats
+11 −10 test/61-assert-11-size_not_zero.bats
+20 −10 test/65-assert-10-assert_symlink_to.bats
+13 −0 test/67-assert-10-assert_file_contains.bats
+53 −0 test/67-assert-10-assert_file_not_contains.bats
+19 −7 test/70-temp-10-temp_make.bats
+44 −7 test/70-temp-11-temp_del.bats
+4 −0 test/fixtures/temp/temp_del-main.bats
+12 −0 test/fixtures/temp/temp_del-setup_file.bats
+12 −0 test/fixtures/temp/temp_del-teardown_file.bats
+4 −0 test/fixtures/temp/temp_make-main.bats
+15 −0 test/fixtures/temp/temp_make-setup_file.bats
+12 −0 test/fixtures/temp/temp_make-teardown_file.bats
+1 −1 test/fixtures/temp/test_helper.bash
+13 −1 test/test_helper.bash

0 comments on commit 0cfc448

Please sign in to comment.