mirror of
https://github.com/AtsushiSakai/PythonRobotics.git
synced 2026-01-13 18:48:09 -05:00
* clean up clothoidal_paths.py * add unit tests for clothoid_paths * add unit tests for clothoid_paths * add unit tests for clothoid_paths * code clean up * code clean up * code clean up * code clean up * code clean up * code clean up * code clean up * code clean up
12 lines
205 B
Python
12 lines
205 B
Python
import conftest
|
|
from PathPlanning.ClothoidPath import clothoid_path_planner as m
|
|
|
|
|
|
def test_1():
|
|
m.show_animation = False
|
|
m.main()
|
|
|
|
|
|
if __name__ == '__main__':
|
|
conftest.run_this_test(__file__)
|