"Fossies" - the Fresh Open Source Software Archive

Member "detox-1.4.5/tests/tests/github-issue-0017/test.sh" (15 Aug 2021, 661 Bytes) of package /linux/privat/detox-1.4.5.tar.gz:


As a special service "Fossies" has tried to format the requested source page into HTML format using (guessed) Bash source code syntax highlighting (style: standard) with prefixed line numbers and code folding option. Alternatively you can here view or download the uninterpreted source code file. See also the last Fossies "Diffs" side-by-side code changes report for "test.sh": 1.4.2_vs_1.4.3.

    1 #!/usr/bin/env bash
    2 #
    3 # Tests to confirm GitHub issue #17 is resolved
    4 #
    5 # https://github.com/dharple/detox/issues/17
    6 #
    7 
    8 set -e
    9 
   10 if [ -z "$TESTBASE" ] ; then
   11     echo TESTBASE needs to be passed via the env
   12     exit 1
   13 fi
   14 
   15 . $TESTBASE/test-functions
   16 
   17 DETOX=$1
   18 TABLEPATH=$(dirname $TESTBASE)/table
   19 INPUT=$(printf "new\nline")
   20 OUTPUT="new_line"
   21 
   22 # ---------------------------------------------------------------------------
   23 
   24 METHOD1=safe
   25 
   26 test_sequence "$DETOX" "$INPUT" "$OUTPUT" "$TABLEPATH" "$METHOD1"
   27 
   28 # ---------------------------------------------------------------------------
   29 
   30 METHOD1=safe-basic
   31 
   32 test_sequence "$DETOX" "$INPUT" "$OUTPUT" "$TABLEPATH" "$METHOD1"