mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-05-17 07:19:41 -04:00
17 lines
306 B
Python
17 lines
306 B
Python
import pytest
|
|
|
|
|
|
@pytest.mark.parametrize(
|
|
"url",
|
|
[
|
|
"/security.txt",
|
|
"/.well-known/security.txt",
|
|
],
|
|
)
|
|
def test_security_policy_redirects_to_policy(client_request, url):
|
|
client_request.get_url(
|
|
url,
|
|
_test_page_title=False,
|
|
_expected_status=200,
|
|
)
|