tests: Don't check example blueprints if we don't have to

ATM osbuild-composer doesn't ship example blueprints

Cherry-picked from d68e01b7e1

Related: rhbz#1825190
This commit is contained in:
Alexander Todorov 2019-11-29 15:05:51 +02:00 committed by Brian C. Lane
parent 9193384bb8
commit b72bb63599

View File

@ -11,10 +11,12 @@ CLI="${CLI:-./src/bin/composer-cli}"
rlJournalStart rlJournalStart
rlPhaseStartTest "blueprints list" rlPhaseStartTest "blueprints list"
if [ "$BACKEND" != "osbuild-composer" ]; then
for bp in example-http-server example-development example-atlas; do for bp in example-http-server example-development example-atlas; do
rlAssertEquals "blueprint list finds $bp" \ rlAssertEquals "blueprint list finds $bp" \
"`$CLI blueprints list | grep $bp`" "$bp" "`$CLI blueprints list | grep $bp`" "$bp"
done done
fi
rlPhaseEnd rlPhaseEnd
rlPhaseStartTest "blueprints save" rlPhaseStartTest "blueprints save"