Fix test scenario to adjust to latest spec

Fix #4149

Signed-off-by: Hiromu OCHIAI <otiai10@gmail.com>
This commit is contained in:
Hiromu OCHIAI
2017-06-23 21:48:32 +09:00
parent c604d46dc5
commit 437f27d535

View File

@@ -102,17 +102,16 @@ use_shared_machine
[[ ${output} == *"Host is not running"* ]]
}
@test "$DRIVER: machine should not allow upgrade when stopped" {
@test "$DRIVER: machine should upgrade even when machine is stopped" {
run machine upgrade $NAME
echo ${output}
[[ "$status" -eq 1 ]]
[[ "$status" -eq 0 ]]
}
@test "$DRIVER: start" {
@test "$DRIVER: start should show an error after upgrade" {
run machine start $NAME
echo ${output}
[ "$status" -eq 0 ]
[ "$status" -eq 1 ]
}
@test "$DRIVER: machine should show running after start" {