commit: d7891c4717199b13d7ed61ac96599f47ab25b9d8 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org> AuthorDate: Mon Jun 12 18:20:03 2023 +0000 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org> CommitDate: Mon Jun 12 18:20:55 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d7891c47
dev-ruby/stringex: fix tests failing without activerecord Closes: https://bugs.gentoo.org/858809 Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org> dev-ruby/stringex/stringex-2.8.6.ebuild | 3 +++ 1 file changed, 3 insertions(+) diff --git a/dev-ruby/stringex/stringex-2.8.6.ebuild b/dev-ruby/stringex/stringex-2.8.6.ebuild index 4bb6bb22166f..7ed8394bd137 100644 --- a/dev-ruby/stringex/stringex-2.8.6.ebuild +++ b/dev-ruby/stringex/stringex-2.8.6.ebuild @@ -28,5 +28,8 @@ each_ruby_prepare() { einfo "Testing activerecord integration" else rm -f test/unit/acts_as_url_integration_test.rb || die + # These tests fails when the acts_as_url code is not loaded + # through the above integration test. + rm -f test/unit/unicode_point_suite/basic_{greek,latin}_test.rb || die fi }
