#!/usr/bin/env -S bats --report-formatter junit --formatter tap
# -*-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 "[slurm] check for working sacct" {
    skip "Temporarily skip sacct check"
    run which sacct
    assert_success

    run sacct
    assert_success
}

