Skip to content

Commit

Permalink
add pure_pursuit test
Browse files Browse the repository at this point in the history
  • Loading branch information
AtsushiSakai committed Dec 24, 2017
1 parent d703c49 commit 13e172d
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions tests/test_pure_pursuit.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
from unittest import TestCase
from PathTracking.pure_pursuit import pure_pursuit as m

print("pure_pursuit test")


class Test(TestCase):

def test1(self):
m.show_animation = False
m.main()

0 comments on commit 13e172d

Please sign in to comment.