mirror of
https://github.com/nix-community/nix-on-droid.git
synced 2025-11-08 19:46:07 +01:00
7 lines
216 B
Bash
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 ]]
|
|
}
|