Update test name and add more assertions

Update test name to make it clear that the Action no longer fails to detect CRLF changes.
This commit is contained in:
Stefan Zweifel 2022-11-30 20:33:24 +01:00
parent f5fe04079d
commit 7bd0e439a3
1 changed files with 8 additions and 1 deletions

View File

@ -974,7 +974,7 @@ cat_github_output() {
assert_line --partial "another-subdirectory/new-file-3.txt" assert_line --partial "another-subdirectory/new-file-3.txt"
} }
@test "fails to detect crlf change in files and does not detect change or commit changes" { @test "detects if crlf in files change and does not create commit" {
# Set autocrlf to true # Set autocrlf to true
cd "${FAKE_LOCAL_REPOSITORY}" cd "${FAKE_LOCAL_REPOSITORY}"
git config core.autocrlf true git config core.autocrlf true
@ -997,6 +997,13 @@ cat_github_output() {
assert_success assert_success
refute_line --partial "2 files changed, 2 insertions(+), 2 deletions(-)"
assert_line --partial "warning: in the working copy of 'new-file-2.txt', LF will be replaced by CRLF the next time Git touches it"
assert_line --partial "Working tree clean. Nothing to commit."
assert_line --partial "new-file-2.txt"
assert_line --partial "new-file-3.txt"
# Changes are not detected # Changes are not detected
run cat_github_output run cat_github_output
assert_line "changes_detected=false" assert_line "changes_detected=false"