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

git-namespace-backup

Blame
  • test_example.py 310 B
    from testinfra.utils.ansible_runner import AnsibleRunner
    
    testinfra_hosts = AnsibleRunner('.molecule/ansible_inventory').get_hosts('all')
    
    
    def test_example(Command):
        assert Command('uname').rc == 0
    
    
    def test_root(Command, Sudo):
        with Sudo():
            assert Command('whoami').stdout.strip() == 'root'