We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4a4bc2e commit 18508c4Copy full SHA for 18508c4
test/test_rake_clean.rb
@@ -4,7 +4,11 @@
4
5
class TestRakeClean < Rake::TestCase # :nodoc:
6
def test_clean
7
- load "rake/clean.rb", true
+ if RUBY_ENGINE == 'truffleruby' and RUBY_ENGINE_VERSION == '19.3.0'
8
+ load "rake/clean.rb" # TruffleRuby 19.3 does not set self correctly with wrap=true
9
+ else
10
+ load "rake/clean.rb", true
11
+ end
12
13
assert Rake::Task["clean"], "Should define clean"
14
assert Rake::Task["clobber"], "Should define clobber"
0 commit comments