summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin.mock/packages/multimethod-base/package.py
blob: 97cd5d15d9c960d33f5335c18ed00f8ac98ddfc8 (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-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)

from spack.package import *


class MultimethodBase(Package):
    """This is a base class for the Multimethod test case.

    It tests whether mutlimethod properly invokes methods in a base
    class when subclass multi-methods do not match.

    """

    homepage = "http://www.example.com/"
    url = "http://www.example.com/example-1.0.tar.gz"

    def base_method(self):
        return "base_method"

    def diamond_inheritance(self):
        return "base_package"