blob: 5f243b93b8ec13b9ea2c03ad26729c2b5f1dc3b8 (
plain)
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
29
30
31
32
33
34
35
36
37
38
39
|
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
USE_RUBY="ruby21 ruby22"
RUBY_FAKEGEM_RECIPE_TEST="none"
# requires sdoc
RUBY_FAKEGEM_TASK_DOC=""
RUBY_FAKEGEM_EXTRADOC="CONTRIBUTORS README.markdown"
inherit ruby-fakegem eutils
DESCRIPTION="A fake filesystem. Use it in your tests"
HOMEPAGE="https://github.com/defunkt/fakefs"
LICENSE="MIT"
SLOT="0"
KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
IUSE=""
ruby_add_bdepend "
test? (
dev-ruby/rspec:2
>=dev-ruby/test-unit-2.5.1-r1
)"
all_ruby_prepare() {
# Remove bundler
rm Gemfile || die
}
each_ruby_test() {
ruby-ng_rspec
ruby-ng_testrb-2 -Ilib:test test/**/*_test.rb
}
|