mirror of
https://github.com/release-engineering/dist-git.git
synced 2025-02-23 23:12:55 +00:00
12 lines
299 B
Bash
Executable file
12 lines
299 B
Bash
Executable file
#!/bin/bash
|
|
|
|
. /usr/bin/rhts-environment.sh || exit 1
|
|
. /usr/share/beakerlib/beakerlib.sh || exit 1
|
|
|
|
export TESTPATH="$( builtin cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
|
|
rlJournalStart
|
|
rlPhaseStartTest TestTemplate
|
|
# write your test here
|
|
rlPhaseEnd
|
|
rlJournalEnd &> /dev/null
|