(connpath)
| 11 | |
| 12 | @with_sitl |
| 13 | def test_timeout(connpath): |
| 14 | v = connect(connpath) |
| 15 | |
| 16 | # Set the vehicle and autopilot type to 'unsupported' types that MissionPlanner uses as of 17.Apr.2016 |
| 17 | v._vehicle_type = 6 |
| 18 | v._autopilot_type = 8 |
| 19 | |
| 20 | # The above types trigger 'TypeError: argument of type 'NoneType' is not iterable' which is addressed in issue #610 |
| 21 | is_available = v._is_mode_available(0) |
| 22 | |
| 23 | v.close() |
nothing calls this directly
no test coverage detected