#!../common/bats/bin/bats
# -*-sh-*-

load ./common/test_helper_functions || exit 1
source ./common/functions || exit 1

if [ -s ./common/TEST_ENV ];then
    source ./common/TEST_ENV
fi

@test "[mrsh] check for RPM" {
    run check_if_rpm_installed "mrsh${DELIM}"
    assert_success
}

@test "[mrsh] run command on compute node" {
    run mrsh cc1 hostname
    assert_success
}
