add comments in: test_multiple_usernames.py

pull/1355/head
Evelina Diamantopoulou 2 years ago
parent bffce2bca2
commit 548180749d

@ -7,7 +7,19 @@ import sherlock as sh
checksymbols = []
checksymbols = ["_", "-", "."]
class TestMulripleUsernames(unittest.TestCase):
"""Test for mulriple usernames.
This test ensures that the function MultipleUsernames works properly. More specific,
different scenarios are tested and only usernames that contain this specific sequence: {?}
should return positive.
Keyword Arguments:
self -- This object.
Return Value:
Nothing.
"""
class TestMultipleUsernames(unittest.TestCase):
def test_area(self):
test_usernames = ["test{?}test" , "test{?feo" , "test"]
for name in test_usernames:

Loading…
Cancel
Save