Files
guru/dev-crystal/spectator/spectator-0.12.0.ebuild
Anna (cybertailor) Vyalkova b3d4d77547 dev-crystal/spectator: add 0.12.0, drop 0.11.5
Bug: https://bugs.gentoo.org/883819
Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo@sysrq.in>
2024-04-27 14:50:06 +05:00

32 lines
799 B
Bash

# Copyright 2022-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit shards
DESCRIPTION="Feature-rich testing framework for Crystal inspired by RSpec"
HOMEPAGE="https://github.com/icy-arctic-fox/spectator"
SRC_URI="https://github.com/icy-arctic-fox/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64"
DOCS=( {ARCHITECTURE,CHANGELOG,CONTRIBUTING,README}.md )
src_test() {
# adopted from .gitlab-ci.yml
shards_src_test spec/matchers/ spec/spectator/*.cr
shards_src_test spec/docs/
shards_src_test spec/features/
shards_src_test spec/issues/
shards_src_test spec/rspec/
# Build failure
#shards_src_test spec/spectator/dsl/
# Will eat all your memory
#shards_src_test spec/spectator/mocks/
}