mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-11 04:08:09 +03:00
24 lines
525 B
Python
24 lines
525 B
Python
from __future__ import unicode_literals
|
|
|
|
from spacy.orth import like_url
|
|
|
|
|
|
def test_basic_url():
|
|
assert like_url('www.google.com')
|
|
assert like_url('google.com')
|
|
assert like_url('sydney.com')
|
|
assert like_url('Sydney.edu')
|
|
assert like_url('2girls1cup.org')
|
|
|
|
|
|
def test_close_enough():
|
|
assert like_url('http://stupid')
|
|
assert like_url('www.hi')
|
|
|
|
|
|
def test_non_match():
|
|
assert not like_url('dog')
|
|
assert not like_url('1.2')
|
|
assert not like_url('1.a')
|
|
assert not like_url('hello.There')
|