mirror of
https://github.com/peeringdb/peeringdb.git
synced 2024-05-11 05:55:09 +00:00
10 lines
210 B
Python
10 lines
210 B
Python
import pytest
|
|
import requests
|
|
import peeringdb_server.models as models
|
|
from django.test import TestCase
|
|
|
|
|
|
def test_requests_ssl():
|
|
r = requests.get("https://www.google.com")
|
|
assert r.status_code == 200
|