from helpers import parse_raw_specs def test_parse_raw_specs(): xml_str = """

Specifications

Suggested Age: 6 Years and Up

CPSC Choking Hazard Warnings: Choking_hazard_small_parts

TCIN: 81917300
UPC: 840391145528
Origin: imported

The above item details were provided by the Target Plus™ Partner. Target does not represent or warrant that this information is accurate or complete. On occasion, manufacturers may modify their items and update their labels.

We recommend that you do not rely solely on the information presented. If you have a specific question about this item, you may consult the item\'s label, contact the manufacturer directly or call Target Guest Services at 1-800-591-3869.

""" expected = {"tcin": " 81917300", "origin": " imported"} assert parse_raw_specs(xml_str) == expected