mirror of
https://github.com/public-apis/public-apis.git
synced 2025-05-09 23:26:52 +02:00
Create basic test to fake_user_agent
This commit is contained in:
parent
b62683f96e
commit
1866c0d83a
1 changed files with 5 additions and 0 deletions
|
@ -3,6 +3,7 @@
|
|||
import unittest
|
||||
|
||||
from validate.links import find_links_in_text
|
||||
from validate.links import fake_user_agent
|
||||
from validate.links import get_host_from_link
|
||||
from validate.links import has_cloudflare_protection
|
||||
|
||||
|
@ -63,6 +64,10 @@ class TestValidateLinks(unittest.TestCase):
|
|||
find_links_in_text(1)
|
||||
find_links_in_text(True)
|
||||
|
||||
def test_if_fake_user_agent_has_a_str_as_return(self):
|
||||
user_agent = fake_user_agent()
|
||||
self.assertIsInstance(user_agent, str)
|
||||
|
||||
def test_get_host_from_link(self):
|
||||
links = [
|
||||
'example.com',
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue