mirror of
https://github.com/laramies/theHarvester.git
synced 2024-11-14 11:36:56 +08:00
21 lines
464 B
Python
21 lines
464 B
Python
|
#!/usr/bin/env python3
|
||
|
# coding=utf-8
|
||
|
|
||
|
from parsers import myparser
|
||
|
import pytest
|
||
|
|
||
|
|
||
|
class TestMyParser(object):
|
||
|
|
||
|
def test_emails(self):
|
||
|
word = 'domain.com'
|
||
|
results = '@domain.com***a@domain***banotherdomain.com***c@domain.com***d@sub.domain.com***'
|
||
|
parse = myparser.Parser(results, word)
|
||
|
emails = sorted(parse.emails())
|
||
|
assert emails, ['c@domain.com', 'd@sub.domain.com']
|
||
|
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
pytest.main()
|
||
|
|