summaryrefslogtreecommitdiffstats
path: root/docs/_static/css
diff options
context:
space:
mode:
authorSunder Tattavarada <statta@research.att.com>2020-06-11 13:35:33 +0000
committerGerrit Code Review <gerrit@onap.org>2020-06-11 13:35:33 +0000
commit6259ed3ee9db29ea32a9b04372e52685d1a7cd11 (patch)
tree8eaad71017f32e59b58ba3116b60bf710ea7a98a /docs/_static/css
parenta1e57ab88f737c74316a5c16edfb8b23f430d826 (diff)
Update git submodules
* Update docs/submodules/portal.git from branch 'master' to 5347a112e9570c38491b5cfb80a1250530daddab - Merge "lowered code smells" - lowered code smells Issue-ID: PORTAL-865 Change-Id: Id5df2f71d661b0ae2c002bba841aa3a9349f2e11 Signed-off-by: Rupinder <rupinsi1@in.ibm.com>
Diffstat (limited to 'docs/_static/css')
0 files changed, 0 insertions, 0 deletions
ring.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
# Copyright (c) 2018 Intel Corp. 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.
#

from vnfsdk_pkgtools import vnfreq


class FakeTester(vnfreq.TesterBase):
    ID = 'fake'
    DESC = 'fake'

    def __init__(self, *args, **kwargs):
        super(FakeTester, self).__init__()

    def _do_check(self, reader, tosca):
        return 'error'


def test_check_and_print(mocker):
    mocker.patch('vnfsdk_pkgtools.vnfreq.get_vnfreq_tester', new=FakeTester)
    ret = vnfreq.check_and_print(['fake'], mocker.Mock(), mocker.Mock())
    assert ret == 1