def test_should_exclude_route_no_route(): assert not should_exclude_route(set(['foo', 'two']), {'route': None})
def test_should_exclude_route_no_matched_route(mock_route_info): assert not should_exclude_route(set(['foo', 'two']), mock_route_info)
def test_should_exclude_route(mock_route_info): assert should_exclude_route(set(['route-one', 'two']), mock_route_info)