Skip to content
Snippets Groups Projects
Select Git revision
  • e418a60763772d961112b798d2d01266f7c77c70
  • master default
2 results

test_mod-php7.py

Blame
  • test_mod-php7.py 349 B
    from testinfra.utils.ansible_runner import AnsibleRunner
    
    testinfra_hosts = AnsibleRunner('.molecule/ansible_inventory').get_hosts('all')
    
    
    def test_mod_php(Command, Sudo):
        with Sudo():
            assert 'php' in Command('a2query -m').stdout
    
    
    def test_phpinfo(Command):
        'PHP Version 7.0' in Command('curl http://localhost/phpinfo.php').stdout