clover.launch: remove shell node autolaunch as it’s not needed

This commit is contained in:
Oleg Kalachev
2021-05-01 08:52:42 +03:00
parent 4943cb94b0
commit 480a9b1f0a
2 changed files with 0 additions and 20 deletions

View File

@@ -28,19 +28,3 @@ def test_simple_offboard_services_available():
def test_web_video_server(node):
import urllib2
urllib2.urlopen("http://localhost:8080").read()
def test_shell(node):
execute = rospy.ServiceProxy('exec', srv.Execute)
execute.wait_for_service(5)
res = execute(cmd='echo foo')
assert res.code == 0
assert res.output == 'foo\n'
res = execute(cmd='foo')
assert res.code == 32512
assert res.output == ''
res = execute(cmd='ls foo')
assert res.code == 512
assert res.output == ''