summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/perl-sql-reservedwords/package.py
blob: d6574973ed822107de237d4d764309267ab25ba6 (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
25
26
27
28
# Copyright 2013-2024 Lawrence Livermore National Security, LLC and other
# Spack Project Developers. See the top-level COPYRIGHT file for details.
# Copyright 2023 EMBL-European Bioinformatics Institute
#
# SPDX-License-Identifier: (Apache-2.0 OR MIT)

from spack.package import *


class PerlSqlReservedwords(PerlPackage):
    """Reserved SQL words by ANSI/ISO"""

    homepage = "https://metacpan.org/pod/SQL::ReservedWords"
    url = "https://cpan.metacpan.org/authors/id/C/CH/CHANSEN/SQL-ReservedWords-0.8.tar.gz"

    maintainers("EbiArnie")

    version("0.8", sha256="09f4aecf1bd8efdd3f9b39f16a240c4e9ceb61eb295b88145c96eb9d58504a2a")

    depends_on("perl-sub-exporter", type=("build", "run", "test"))

    def test_use(self):
        """Test 'use module'"""
        options = ["-we", 'use strict; use SQL::ReservedWords; print("OK\n")']

        perl = self.spec["perl"].command
        out = perl(*options, output=str.split, error=str.split)
        assert "OK" in out