#!./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 "[clush] check for OS-provided RPM" {
    run check_if_rpm_installed "clustershell"
    assert_success
}

@test "[clush] clush -Sg compute" {
    run clush -Sg compute hostname
    assert_success
}
