summaryrefslogtreecommitdiff
path: root/spec/ruby/core/filetest/exist_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/core/filetest/exist_spec.rb')
-rw-r--r--spec/ruby/core/filetest/exist_spec.rb8
1 files changed, 3 insertions, 5 deletions
diff --git a/spec/ruby/core/filetest/exist_spec.rb b/spec/ruby/core/filetest/exist_spec.rb
index a95d3f91a1..612ffa9fcb 100644
--- a/spec/ruby/core/filetest/exist_spec.rb
+++ b/spec/ruby/core/filetest/exist_spec.rb
@@ -5,10 +5,8 @@ describe "FileTest.exist?" do
it_behaves_like :file_exist, :exist?, FileTest
end
-ruby_version_is "3.2" do
- describe "FileTest.exists?" do
- it "has been removed" do
- FileTest.should_not.respond_to?(:exists?)
- end
+describe "FileTest.exists?" do
+ it "has been removed" do
+ FileTest.should_not.respond_to?(:exists?)
end
end