Use global binary variable in tests for automated install
Signed-off-by: DL6ER <dl6er@dl6er.de>
This commit is contained in:
parent
cc657c0c26
commit
d26f2dcb2c
|
@ -484,7 +484,8 @@ def test_FTL_download_aarch64_no_errors(Pihole):
|
|||
# mock uname to return generic platform
|
||||
download_binary = Pihole.run('''
|
||||
source /opt/pihole/basic-install.sh
|
||||
FTLinstall pihole-FTL-aarch64-linux-gnu
|
||||
binary="pihole-FTL-aarch64-linux-gnu"
|
||||
FTLinstall
|
||||
''')
|
||||
expected_stdout = tick_box + ' Downloading and Installing FTL'
|
||||
assert expected_stdout in download_binary.stdout
|
||||
|
@ -498,7 +499,8 @@ def test_FTL_download_unknown_fails_no_errors(Pihole):
|
|||
# mock uname to return generic platform
|
||||
download_binary = Pihole.run('''
|
||||
source /opt/pihole/basic-install.sh
|
||||
FTLinstall pihole-FTL-mips
|
||||
binary="pihole-FTL-mips"
|
||||
FTLinstall
|
||||
''')
|
||||
expected_stdout = cross_box + ' Downloading and Installing FTL'
|
||||
assert expected_stdout in download_binary.stdout
|
||||
|
|
Loading…
Reference in New Issue