We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8b9b5b6 commit 3258346Copy full SHA for 3258346
Rakefile
@@ -32,6 +32,7 @@ Rake::TestTask.new(:test) do |t|
32
end
33
t.libs << "test/lib"
34
t.ruby_opts << "-rhelper"
35
+ t.options = "--ignore-name=TestIO_Console#test_bad_keyword" if RUBY_ENGINE == "jruby"
36
t.test_files = FileList["test/**/test_*.rb"]
37
38
test/io/console/test_io_console.rb
@@ -52,9 +52,6 @@ def test_failed_path
52
end if FailedPathExceptions
53
54
def test_bad_keyword
55
- # JRuby in CI still fails to reject this bad keyword argument
56
- omit if RUBY_ENGINE == 'jruby'
57
-
58
assert_raise_with_message(ArgumentError, /unknown keyword:.*bad/) do
59
File.open(IO::NULL) do |f|
60
f.raw(bad: 0)
0 commit comments