-
- def test_no_dublincore(self):
- with self.assertRaises(NoDublinCore):
- LegacyWLDocument.from_file(
- get_fixture('text', 'asnyk_miedzy_nami_nodc.xml')
- ).as_text()
-
- def test_passing_parse_dublincore_to_transform(self):
- """Passing parse_dublincore=False to the constructor omits DublinCore parsing."""
- LegacyWLDocument.from_file(
- get_fixture('text', 'asnyk_miedzy_nami_nodc.xml'),
- parse_dublincore=False,
- ).as_text()