mirror of
https://github.com/pi-hole/pi-hole.git
synced 2024-12-25 14:20:18 +00:00
mock whiptail to add universe repo
Signed-off-by: pvogt09 <50047961+pvogt09@users.noreply.github.com>
This commit is contained in:
parent
60a4814ac1
commit
bef9cd3bc2
1 changed files with 5 additions and 5 deletions
|
@ -601,8 +601,8 @@ def test_install_dependent_packages_no_errors(Pihole):
|
||||||
'''
|
'''
|
||||||
confirms all dependent packages are installed on a fresh build
|
confirms all dependent packages are installed on a fresh build
|
||||||
'''
|
'''
|
||||||
# mock whiptail answers and ensure installer dependencies
|
# mock whiptail answers to use universe repo if asked
|
||||||
mock_command('whiptail', {'*': ('', '0')}, Pihole)
|
mock_command('whiptail', {'*': ('', '1')}, Pihole)
|
||||||
# create configuration file
|
# create configuration file
|
||||||
setup_var_file = 'cat <<EOF> /etc/pihole/setupVars.conf\n'
|
setup_var_file = 'cat <<EOF> /etc/pihole/setupVars.conf\n'
|
||||||
for k, v in SETUPVARS.items():
|
for k, v in SETUPVARS.items():
|
||||||
|
@ -625,10 +625,10 @@ def test_install_dependent_packages_no_errors(Pihole):
|
||||||
|
|
||||||
def test_install_dependent_packages_web_no_errors(Pihole):
|
def test_install_dependent_packages_web_no_errors(Pihole):
|
||||||
'''
|
'''
|
||||||
confirms all dependent packages are installed on a fresh build
|
confirms all dependent web packages are installed on a fresh build
|
||||||
'''
|
'''
|
||||||
# mock whiptail answers and ensure installer dependencies
|
# mock whiptail answers to use universe repo if asked
|
||||||
mock_command('whiptail', {'*': ('', '0')}, Pihole)
|
mock_command('whiptail', {'*': ('', '1')}, Pihole)
|
||||||
# mock systemctl to start lighttpd
|
# mock systemctl to start lighttpd
|
||||||
mock_command_2(
|
mock_command_2(
|
||||||
'systemctl',
|
'systemctl',
|
||||||
|
|
Loading…
Reference in a new issue