summaryrefslogtreecommitdiff
path: root/spec/ruby/core/kernel
diff options
context:
space:
mode:
authorHiroshi SHIBATA <hsbt@ruby-lang.org>2024-01-12 18:51:16 +0900
committerHiroshi SHIBATA <hsbt@ruby-lang.org>2024-01-12 20:02:50 +0900
commit0a27142cf14635abfe1befadb86c1db25de6c2ca (patch)
tree4d82e1ef9d5a09e4be7b8314e3cd214ddebd2765 /spec/ruby/core/kernel
parent3113bc8d445c4c24ed3827adfc50bb88c99b6364 (diff)
Ignore windows_31j module with mswin
Diffstat (limited to 'spec/ruby/core/kernel')
-rw-r--r--spec/ruby/core/kernel/require_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/ruby/core/kernel/require_spec.rb b/spec/ruby/core/kernel/require_spec.rb
index 896afb840a..4029e68725 100644
--- a/spec/ruby/core/kernel/require_spec.rb
+++ b/spec/ruby/core/kernel/require_spec.rb
@@ -26,7 +26,7 @@ describe "Kernel#require" do
features = out.lines.map { |line| File.basename(line.chomp, '.*') }
# Ignore CRuby internals
- features -= %w[encdb transdb windows_1252]
+ features -= %w[encdb transdb windows_1252 windows_31j]
features.reject! { |feature| feature.end_with?('-fake') }
features.sort.should == provided.sort