def test_update_metadata(self):
     xml = parse_input("test_5_input.xml")
     clean_notacast.update_metadata(xml)
     clean_notacast.indent(xml, spaces=4)
     self.assert_equal_to_output("test_5_output.xml", xml)
 def test_indent_three_items(self):
     xml = parse_input("test_3_input.xml")
     clean_notacast.indent(xml)
     self.assert_equal_to_output("test_3_output.xml", xml)
 def test_remove_duplicates(self):
     xml = parse_input("test_4_input.xml")
     clean_notacast.remove_duplicate_items(xml)
     clean_notacast.indent(xml, spaces=4)
     self.assert_equal_to_output("test_4_output.xml", xml)
 def test_indent_two_items(self):
     xml = parse_input("test_2_input.xml")
     clean_notacast.indent(xml, spaces=4)
     self.assert_equal_to_output("test_2_output.xml", xml)