spaCy/spacy/tests/print/test_print.py

99 lines
2.2 KiB
Python
Raw Normal View History

2015-11-02 21:22:18 +03:00
# -*- coding: utf-8 -*-
import pytest
def test_print_doc(EN):
try:
doc = EN(u'I sat down for coffee at the coffee store')
print(doc)
except Exception:
pytest.fail("Printing failed")
def test_repr_doc(EN):
try:
doc = EN(u'I sat down for coffee at the coffee store')
print(repr(doc))
except Exception:
pytest.fail("Printing failed")
def test_print_doc_unicode(EN):
try:
doc = EN(u'I sat down for coffee at the café')
print(doc)
except Exception:
pytest.fail("Printing failed")
def test_repr_doc_unicode(EN):
try:
doc = EN(u'I sat down for coffee at the café')
print(repr(doc))
except Exception:
pytest.fail("Printing failed")
def test_print_span(EN):
try:
span = EN(u'I sat down for coffee at the coffee store')[-3:]
print(span)
except Exception:
pytest.fail("Printing failed")
def test_repr_span(EN):
try:
span = EN(u'I sat down for coffee at the coffee store')[-3:]
print(repr(span))
except Exception:
pytest.fail("Printing failed")
def test_print_span_unicode(EN):
try:
span = EN(u'I sat down for coffee at the café')[-3:]
print(span)
except Exception:
pytest.fail("Printing failed")
def test_repr_span_unicode(EN):
try:
span = EN(u'I sat down for coffee at the café')[-3:]
print(repr(span))
except Exception:
pytest.fail("Printing failed")
def test_print_token(EN):
try:
token = EN(u'I sat down for coffee at the coffee store')[-1]
print(token)
except Exception:
pytest.fail("Printing failed")
def test_repr_token(EN):
try:
token = EN(u'I sat down for coffee at the coffee store')[-1]
print(repr(token))
except Exception:
pytest.fail("Printing failed")
def test_print_token_unicode(EN):
try:
token = EN(u'I sat down for coffee at the café')[-1]
print(token)
except Exception:
pytest.fail("Printing failed")
def test_repr_token_unicode(EN):
try:
token = EN(u'I sat down for coffee at the café')[-1]
print(repr(token))
except Exception:
pytest.fail("Printing failed")