Example #1
0
	def test_simple_one (self):
		recs = xisbn.xisbn_xml_to_dicts (SIMPLE_ONE_XML)
Example #2
0
	def test_bad_status (self):
		try:
			recs = xisbn.xisbn_xml_to_dicts (BAD_STATUS_XML)
			assert (False), "should fail if reading document with bad status"
		except:
			pass