
refers #20079 Added docstrings to 'concretize' and 'concretized' to document the format for tests. Added tests for the activation of test dependencies.
13 lines
468 B
Python
13 lines
468 B
Python
# Copyright 2013-2020 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)
|
|
class TestDependency(Package):
|
|
"""Represent a dependency that is pulled-in to allow testing other
|
|
packages.
|
|
"""
|
|
homepage = "http://www.example.com"
|
|
url = "http://www.example.com/tdep-1.0.tar.gz"
|
|
|
|
version('1.0', '0123456789abcdef0123456789abcdef')
|