1
0
mirror of https://github.com/albfan/bash-ini-parser.git synced 2025-04-19 13:22:14 +03:00
bash-ini-parser/t/t0004-comments.sh
2018-05-26 12:05:12 +02:00

18 lines
342 B
Bash
Executable File

#!/bin/bash
test_description="check comments"
. setup.sh
DIR_TEST=$SHARNESS_TEST_DIRECTORY/t0004
test_expect_success "Parse comments" "
export COVERAGE_NAME=comments_parser
cp ../.simplecov .
cfg_parser $DIR_TEST/comments.ini
cfg_writer > comments.out
test_cmp $DIR_TEST/comments.out.correct comments.out
"
test_done