nix-on-droid/tests/on-device/hello.bats
2021-12-12 11:56:48 +01:00

7 lines
216 B
Bash

# Copyright (c) 2019-2021, see AUTHORS. Licensed under MIT License, see LICENSE.
@test 'GNU Hello is functional' {
out=$(nix-shell -p hello --run hello)
[[ "$out" == 'Hello, world!' ]]
[[ "$status" -eq 0 ]]
}