def test_empty_object_works():
    car_plate = CarPlate()
    assert len(car_plate.license_plates) == 0
def car_plate_object():
    json_repsonse = json.load(
        open("./tests/data/license_plates/v1/plate.json"))
    return CarPlate(json_repsonse["predictions"][0])
def car_plate_object_from_scratch():
    return CarPlate(license_plates=["abcdef", "klimopo"])