summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin.mock/packages/multimethod-inheritor/package.py
blob: d3b3cd7c442203c788127750fb632f31fece308b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# Copyright 2013-2018 Lawrence Livermore National Security, LLC and other
# Spack Project Developers. See the top-level COPYRIGHT file for details.
#
# SPDX-License-Identifier: (Apache-2.0 OR MIT)

from spack.pkg.builtin.mock.multimethod import Multimethod


class MultimethodInheritor(Multimethod):
    """This package is designed for use with Spack's multimethod test.
       It has a bunch of test cases for the @when decorator that the
       test uses.
    """

    @when('@1.0')
    def inherited_and_overridden(self):
        return "inheritor@1.0"

    #
    # Test multi-level inheritance
    #
    @when('@2:')
    def base_method(self):
        return 'multimethod-inheritor'