-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test_lib: Update bats-assert to latest master
No more unbound variables and newer code
- Loading branch information
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule bats-assert
updated
32 files
+3 −0 | .gitignore | |
+3 −8 | .travis.yml | |
+0 −39 | CHANGELOG.md | |
+179 −189 | README.md | |
+30 −0 | load.bash | |
+10 −9 | package.json | |
+0 −6 | script/install-bats.sh | |
+29 −742 | src/assert.bash | |
+42 −0 | src/assert_equal.bash | |
+78 −0 | src/assert_failure.bash | |
+248 −0 | src/assert_line.bash | |
+42 −0 | src/assert_not_equal.bash | |
+197 −0 | src/assert_output.bash | |
+44 −0 | src/assert_success.bash | |
+42 −0 | src/refute.bash | |
+271 −0 | src/refute_line.bash | |
+199 −0 | src/refute_output.bash | |
+0 −50 | test/50-assert-12-assert_equal.bats | |
+0 −36 | test/50-assert-13-assert_success.bats | |
+0 −69 | test/50-assert-14-assert_failure.bats | |
+0 −267 | test/50-assert-15-assert_output.bats | |
+8 −7 | test/assert.bats | |
+62 −0 | test/assert_equal.bats | |
+75 −0 | test/assert_failure.bats | |
+156 −139 | test/assert_line.bats | |
+57 −0 | test/assert_not_equal.bats | |
+285 −0 | test/assert_output.bats | |
+40 −0 | test/assert_success.bats | |
+7 −7 | test/refute.bats | |
+149 −147 | test/refute_line.bats | |
+98 −90 | test/refute_output.bats | |
+24 −7 | test/test_helper.bash |