f8e13417f2
date: 2026-08-15T14:20:10 master commit: d48cfa730bf21593b684efeaf3fd8940695e1dea
13 lines
374 B
Python
13 lines
374 B
Python
from openpilot.common.test import OpenpilotTestCase
|
|
from openpilot.selfdrive.car.docs import CARS_MD_TEMPLATE, generate_cars_md
|
|
from opendbc.car.docs import get_all_car_docs
|
|
|
|
|
|
class TestCarDocs(OpenpilotTestCase):
|
|
@classmethod
|
|
def setup_class(cls):
|
|
cls.all_cars = get_all_car_docs()
|
|
|
|
def test_generator(self):
|
|
generate_cars_md(self.all_cars, CARS_MD_TEMPLATE)
|