summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin.mock/packages/multimethod-diamond/package.py
blob: 58c0afc5cf6b972360c2f5d5469c5ad14ad456c9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# Copyright 2013-2023 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)

import spack.pkg.builtin.mock.multimethod_diamond_parent as mp
import spack.pkg.builtin.mock.multimethod_inheritor as mi
from spack.package import *


class MultimethodDiamond(mi.MultimethodInheritor, mp.MultimethodDiamondParent):
    """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("@4.0")
    def diamond_inheritance(self):
        return "subclass"