from app.utils.body_types import normalize_body_type


def test_normalize_body_type_rikshaw():
    assert normalize_body_type("RIKSHAW") == "auto_rickshaw"
    assert normalize_body_type("HATCH BACK") == "hatchback"
    assert normalize_body_type("OPEN BODY") == "open"
