1
0
mirror of https://github.com/pi-hole/pi-hole synced 2024-11-17 13:50:33 +00:00

reduce the amount of strict not in checks

Signed-off-by: Adam Hill <adam@diginc.us>
This commit is contained in:
Adam Hill 2018-07-11 23:25:08 -05:00
parent 88e4b6390c
commit 449b7bf6e4
No known key found for this signature in database
GPG Key ID: 2193804FCA429855
2 changed files with 4 additions and 12 deletions

View File

@ -10,4 +10,3 @@ From command line all you need to do is:
# How do I debug python?
Highly recommended: Setup PyCharm on a **Docker enabled** machine. Having a python debugger like PyCharm changes your life if you've never used it :)

View File

@ -1,4 +1,5 @@
import pytest
import re
from conftest import (
tick_box,
info_box,
@ -18,14 +19,8 @@ def test_epel_and_remi_not_installed_fedora(Pihole):
source /opt/pihole/basic-install.sh
distro_check
''')
expected_stdout = info_box + (' Enabling EPEL package repository '
'(https://fedoraproject.org/wiki/EPEL)')
assert expected_stdout not in distro_check.stdout
expected_stdout = tick_box + ' Installed epel-release'
assert expected_stdout not in distro_check.stdout
expected_stdout = info_box + (' User opt-out of PHP 7 upgrade on CentOS. '
'Deprecated PHP may be in use.')
assert expected_stdout not in distro_check.stdout
assert distro_check.stdout == ''
epel_package = Pihole.package('epel-release')
assert not epel_package.is_installed
remi_package = Pihole.package('remi-release')
@ -121,9 +116,7 @@ def test_php_upgrade_user_optin_centos(Pihole):
source /opt/pihole/basic-install.sh
distro_check
''')
expected_stdout = info_box + (' User opt-out of PHP 7 upgrade on CentOS. '
'Deprecated PHP may be in use.')
assert expected_stdout not in distro_check.stdout
assert 'opt-out' not in distro_check.stdout
expected_stdout = info_box + (' Enabling Remi\'s RPM repository '
'(https://rpms.remirepo.net)')
assert expected_stdout in distro_check.stdout