Sha256: 73d6b61eb1de6724ff09b842412e4307d7a33c0b8cbf4a9651e4d121321adc7e
Contents?: true
Size: 593 Bytes
Versions: 1
Compression:
Stored size: 593 Bytes
Contents
#!/bin/bash # Usage: script/ci_test.sh # # Runs tests. # set flag for shell execution. # -e Exit immediately if a command exits with a non-zero status. # -x Print commands and their arguments as they are executed. set -e # files for testing. NEGAR_PIP_RB="../lib/html/pipeline/negarmoji-pipeline.rb" FILTER_RB="../lib/html/pipeline/negarmoji-pipeline/filter.rb" VERSION_RB="../lib/html/pipeline/negarmoji-pipeline/version.rb" ./test_style.sh "${NEGAR_PIP_RB}" "${FILTER_RB}" "${VERSION_RB}" # TODO write tests first :) # ./test_module.sh "${NEGAR_PIP_RB}" "${FILTER_RB}" "${VERSION_RB}"
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
html-pipeline-negarmoji-0.1.6 | script/test.sh |