airgap/tests/test_echo.bats

10 lines
202 B
Bash

#!/usr/bin/env bats
load 'helpers/qga_helper'
@test "echo in guest returns hello" {
result="$(qga_run_cmd_and_get_output /bin/echo hello)"
echo "Guest output: $result"
[ "$result" = "hello" ]
}