File diff 3e20da821a68 → 5f9f8aef3473
roles/common/molecule/default/tests/test_deprecated.py
Show inline comments
 
new file 100644
 
import os
 

	
 
import testinfra.utils.ansible_runner
 

	
 
import pytest
 

	
 

	
 
testinfra_hosts = testinfra.utils.ansible_runner.AnsibleRunner(
 
    os.environ['MOLECULE_INVENTORY_FILE']).get_hosts('parameters-*')
 

	
 

	
 
@pytest.mark.parametrize('path', [
 
    '/etc/pip_check_requirements_upgrades-py3/',
 
    '/var/lib/pipreqcheck/virtualenv-py3/',
 
    '/etc/cron.d/check_pip_requirements-py3',
 
])
 
def test_deprecated_paths_are_absent(host, path):
 
    """
 
    Tests if deprecated paths are absent.
 
    """
 

	
 
    with host.sudo():
 
        assert not host.file(path).exists