parent
59c5cd41cf
commit
264557cd01
2 changed files with 16 additions and 0 deletions
@ -0,0 +1,14 @@ |
|||||||
|
#!/usr/bin/env python3 |
||||||
|
import unittest |
||||||
|
|
||||||
|
from openpilot.selfdrive.car.volkswagen.values import CAR |
||||||
|
|
||||||
|
|
||||||
|
class TestVolkswagenPlatformConfigs(unittest.TestCase): |
||||||
|
def test_configs(self): |
||||||
|
for platform in CAR: |
||||||
|
self.assertTrue(len(platform.config.chassis_codes) > 0, "Chassis code not set") |
||||||
|
|
||||||
|
|
||||||
|
if __name__ == "__main__": |
||||||
|
unittest.main() |
Loading…
Reference in new issue