|
|
@ -7,7 +7,19 @@ import sherlock as sh
|
|
|
|
checksymbols = []
|
|
|
|
checksymbols = []
|
|
|
|
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):
|
|
|
|
def test_area(self):
|
|
|
|
test_usernames = ["test{?}test" , "test{?feo" , "test"]
|
|
|
|
test_usernames = ["test{?}test" , "test{?feo" , "test"]
|
|
|
|
for name in test_usernames:
|
|
|
|
for name in test_usernames:
|
|
|
|