import pytest from fatcat_scholar.schema import * def test_scrub(): vectors = [ ('“Please clean this piece… of text„', '"Please clean this piece... of text"'), ("blah", "blah"), ] for raw, fixed in vectors: assert fixed == scrub_text(raw)