(self)
| 63 | self.assertEqual('128.5.3.2', audit_name) |
| 64 | |
| 65 | def test_auth_with_localhost(self): |
| 66 | audit_name = get_audit_name(mock_request_handler(ip='127.0.0.1', auth_username='ldap_user')) |
| 67 | self.assertEqual('ldap_user', audit_name) |
| 68 | |
| 69 | def test_proxied_name_with_localhost(self): |
| 70 | audit_name = get_audit_name(mock_request_handler(ip='127.0.0.1', proxy_username='basic_username')) |
nothing calls this directly
no test coverage detected