mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-11 04:08:09 +03:00
* Add tests for like_url
This commit is contained in:
parent
dc6c3c0f56
commit
23131f21bb
20
tests/test_urlish.py
Normal file
20
tests/test_urlish.py
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
from spacy.orth import is_urlish
|
||||||
|
|
||||||
|
def test_basic_url():
|
||||||
|
assert is_urlish('www.google.com')
|
||||||
|
assert is_urlish('google.com')
|
||||||
|
assert is_urlish('sydney.com')
|
||||||
|
assert is_urlish('Sydney.edu')
|
||||||
|
assert is_urlish('2girls1cup.org')
|
||||||
|
|
||||||
|
|
||||||
|
def test_close_enough():
|
||||||
|
assert is_urlish('http://stupid')
|
||||||
|
assert is_urlish('www.hi')
|
||||||
|
|
||||||
|
|
||||||
|
def test_non_match():
|
||||||
|
assert not is_urlish('dog')
|
||||||
|
assert not is_urlish('1.2')
|
||||||
|
assert not is_urlish('1.a')
|
||||||
|
assert not is_urlish('hello.There')
|
Loading…
Reference in New Issue
Block a user