===========================================================
                                      .___ __  __   
          _________________  __ __  __| _/|__|/  |_ 
         / ___\_` __ \__  \ |  |  \/ __ | | \\_  __\
        / /_/  >  | \// __ \|  |  / /_/ | |  ||  |  
        \___  /|__|  (____  /____/\____ | |__||__|  
       /_____/            \/           \/           
              grep rough audit - static analysis tool
                  v2.8 written by @Wireghoul
=================================[justanotherhacker.com]===
testinfra-3.2.0/doc/source/modules.rst-122-
testinfra-3.2.0/doc/source/modules.rst:123:.. autoclass:: testinfra.modules.addr.Addr(name)
testinfra-3.2.0/doc/source/modules.rst-124-   :members:
##############################################
testinfra-3.2.0/test/test_modules.py-517-@all_images
testinfra-3.2.0/test/test_modules.py:518:def test_addr(host):
testinfra-3.2.0/test/test_modules.py:519:    non_resolvable = host.addr('some_non_resolvable_host')
testinfra-3.2.0/test/test_modules.py-520-    assert not non_resolvable.is_resolvable
##############################################
testinfra-3.2.0/test/test_modules.py-525-    # IP addresses are always resolvable no matter what
testinfra-3.2.0/test/test_modules.py:526:    non_reachable_ip = host.addr('10.42.13.73')
testinfra-3.2.0/test/test_modules.py-527-    assert non_reachable_ip.is_resolvable
##############################################
testinfra-3.2.0/test/test_modules.py-531-
testinfra-3.2.0/test/test_modules.py:532:    google_dns = host.addr('8.8.8.8')
testinfra-3.2.0/test/test_modules.py-533-    assert google_dns.is_resolvable
##############################################
testinfra-3.2.0/test/test_modules.py-538-
testinfra-3.2.0/test/test_modules.py:539:    google_addr = host.addr('google.com')
testinfra-3.2.0/test/test_modules.py-540-    assert google_addr.is_resolvable
##############################################
testinfra-3.2.0/testinfra/modules/addr.py-37-
testinfra-3.2.0/testinfra/modules/addr.py:38:class Addr(Module):
testinfra-3.2.0/testinfra/modules/addr.py-39-    """Test remote address
##############################################
testinfra-3.2.0/testinfra/modules/addr.py-42-
testinfra-3.2.0/testinfra/modules/addr.py:43:    >>> google = host.addr("google.com")
testinfra-3.2.0/testinfra/modules/addr.py-44-    >>> google.is_resolvable
##############################################
testinfra-3.2.0/testinfra/modules/file.py-287-        TARGET_FILE='{0}'
testinfra-3.2.0/testinfra/modules/file.py:288:        cd `dirname $TARGET_FILE`
testinfra-3.2.0/testinfra/modules/file.py:289:        TARGET_FILE=`basename $TARGET_FILE`
testinfra-3.2.0/testinfra/modules/file.py-290-        while [ -L "$TARGET_FILE" ]
testinfra-3.2.0/testinfra/modules/file.py-291-        do
testinfra-3.2.0/testinfra/modules/file.py:292:            TARGET_FILE=`readlink $TARGET_FILE`
testinfra-3.2.0/testinfra/modules/file.py:293:            cd `dirname $TARGET_FILE`
testinfra-3.2.0/testinfra/modules/file.py:294:            TARGET_FILE=`basename $TARGET_FILE`
testinfra-3.2.0/testinfra/modules/file.py-295-        done
##############################################
testinfra-3.2.0/testinfra/modules/service.py-26-    - FreeBSD: service(1)
testinfra-3.2.0/testinfra/modules/service.py:27:    - OpenBSD: ``/etc/rc.d/$name check`` for ``is_running``
testinfra-3.2.0/testinfra/modules/service.py-28-      ``rcctl ls on`` for ``is_enabled`` (only OpenBSD >= 5.8)
testinfra-3.2.0/testinfra/modules/service.py:29:    - NetBSD: ``/etc/rc.d/$name onestatus`` for ``is_running``
testinfra-3.2.0/testinfra/modules/service.py-30-      (``is_enabled`` is not yet implemented)