summaryrefslogtreecommitdiff
path: root/spec/ruby/library/readline/history/each_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/library/readline/history/each_spec.rb')
-rw-r--r--spec/ruby/library/readline/history/each_spec.rb8
1 files changed, 5 insertions, 3 deletions
diff --git a/spec/ruby/library/readline/history/each_spec.rb b/spec/ruby/library/readline/history/each_spec.rb
index 4b87df7640..23387bfc98 100644
--- a/spec/ruby/library/readline/history/each_spec.rb
+++ b/spec/ruby/library/readline/history/each_spec.rb
@@ -20,9 +20,11 @@ with_feature :readline do
result.should == ["1", "2", "3"]
end
- it "yields tainted Objects" do
- Readline::HISTORY.each do |x|
- x.tainted?.should be_true
+ ruby_version_is ''...'2.7' do
+ it "yields tainted Objects" do
+ Readline::HISTORY.each do |x|
+ x.tainted?.should be_true
+ end
end
end
end