Skip to content

Commit

Permalink
updated Kia test VINs; added Ford test VINs
Browse files Browse the repository at this point in the history
  • Loading branch information
davidpeckham committed Mar 16, 2024
1 parent 20df81a commit 53ec80d
Show file tree
Hide file tree
Showing 3 changed files with 6,541 additions and 32,948 deletions.
25 changes: 25 additions & 0 deletions tests/cars/test_ford.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
import parametrize_from_file
from vin import VIN


@parametrize_from_file
def test_ford_2023(
vin: str,
model_year: int,
make: str,
model: str,
series: str,
trim: str,
body_class: str,
electrification_level: str,
vehicle_type: str,
) -> None:
v = VIN(vin)
assert model_year == v.model_year
assert make.lower() == v.make.lower()
assert model == v.model
assert body_class == v.body_class
assert series == v.series
assert trim == v.trim
assert vehicle_type.lower() == v.vehicle_type.lower()
assert electrification_level == v.electrification_level
Loading

0 comments on commit 53ec80d

Please sign in to comment.