blob: 5655d6e18bed89a328e6c884f0e1e47f61486b4b (
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
40
41
42
43
44
45
46
47
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/test-unit/test-unit-2.0.7.ebuild,v 1.3 2010/05/22 16:01:22 flameeyes Exp $
EAPI=2
# One test fails on jruby, might be a jruby bug
# When enabled on ruby18 it breaks too many things, so don't enable it for that just yet
USE_RUBY="ruby18 ruby19 ree18"
RUBY_FAKEGEM_TASK_DOC="docs"
RUBY_FAKEGEM_DOCDIR="doc"
RUBY_FAKEGEM_EXTRADOC="TODO README.txt History.txt"
# Disable default binwraps
RUBY_FAKEGEM_BINWRAP=""
inherit ruby-fakegem
ruby_add_bdepend "doc? ( dev-ruby/hoe )"
DESCRIPTION="An improved version of the Test::Unit framework from Ruby 1.8"
HOMEPAGE="http://test-unit.rubyforge.org/"
SRC_URI="mirror://rubyforge/${PN}/${P}.tgz"
LICENSE="MIT"
SLOT="2"
KEYWORDS=""
IUSE=""
each_ruby_test() {
# the rake audit using dev-ruby/zentest currently fails, and we
# just need to call the testsuite directly.
# rake audit || die "rake audit failed"
local rubyflags
[[ $(basename ${RUBY}) == jruby ]] && rubyflags="-X+O"
${RUBY} ${rubyflags} test/run-test.rb || die "testsuite failed"
}
all_ruby_intall() {
all_fakegem_install
# Create a testrb2 wrapper similarly to the rdoc2 wrapper for
# rdoc-2* series.
ruby_fakegem_binwrapper testrb /usr/bint/testrb2
}
|