Revision 640bc03f0d614aa1c968f96c8c6883c9d4d4ae8f authored by Thomas B. Mooney on 18 July 2016, 19:34:28 UTC, committed by GitHub on 18 July 2016, 19:34:28 UTC
2 parent s 3462b8e + 6eff3bf
Raw File
D.sh
#!/bin/bash

if test -z "$WORKSPACE"
then
    echo "WORKSPACE is not set" >&2
    exit 1
fi

source "$BATS_TEST_DIRNAME/test_helper.bash"

for M in sqitch/genome ur workflow ; do
    submodule_is_clean $M
done
submodule_is_not_initialized sqitch/genome
module_loaded_from_submodule UR
module_loaded_from_submodule Workflow
apipe_test_db_is_not_used
back to top