1
0
mirror of https://github.com/sstephenson/bats.git synced 2024-09-29 12:38:26 +02:00

Merge pull request #9 from adamhjk/dos_endings

Supporting DOS line endings in BATS tests
This commit is contained in:
Sam Stephenson 2013-05-23 06:41:09 -07:00
commit 1be500e4ff
3 changed files with 9 additions and 1 deletions

View File

@ -127,7 +127,7 @@ BATS_OUT="${BATS_TMPNAME}.out"
bats_preprocess_source() {
BATS_TEST_SOURCE="${BATS_TMPNAME}.src"
bats-preprocess < "$BATS_TEST_FILENAME" > "$BATS_TEST_SOURCE"
tr -d '\r' < "$BATS_TEST_FILENAME" | bats-preprocess > "$BATS_TEST_SOURCE"
trap bats_cleanup_preprocessed_source err exit
trap "bats_cleanup_preprocessed_source; exit 1" int
}

View File

@ -103,3 +103,8 @@ fixtures bats
[ $status -eq 0 ]
[ "${lines[1]}" = "ok 1 dash-e on beginning of line" ]
}
@test "dos line endings are stripped before testing" {
run bats "$FIXTURE_ROOT/dos_line.bats"
[ $status -eq 0 ]
}

3
test/fixtures/bats/dos_line.bats vendored Normal file
View File

@ -0,0 +1,3 @@
@test "foo" {
echo "foo"
}