ovn-bgp-agent/ovn_bgp_agent/tests/utils.py
Lucas Alvares Gomes 613397c0a3 Add unittests to base_watcher.py and bgp_watcher.py
Also bump the minimun % of coverage to 40%

Signed-off-by: Lucas Alvares Gomes <lucasagomes@gmail.com>
Change-Id: I1da35375aa4f9d9af94360bfa3128fc7d2a06535
2022-03-11 15:50:40 +00:00

19 lines
702 B
Python

# Copyright 2022 Red Hat, Inc.
# All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
def create_row(**kwargs):
return type('FakeRow', (object,), kwargs)