From 03278d06bff2bcf4d4c5757ef8bb3bffff6eed1e Mon Sep 17 00:00:00 2001 From: Herwin Date: Fri, 7 Feb 2025 15:08:19 +0100 Subject: [PATCH] Remove test for Fiber.current being available without extra require We don't require fiber anywhere. --- core/fiber/current_spec.rb | 4 ---- 1 file changed, 4 deletions(-) diff --git a/core/fiber/current_spec.rb b/core/fiber/current_spec.rb index 4195307a6..b93df77a8 100644 --- a/core/fiber/current_spec.rb +++ b/core/fiber/current_spec.rb @@ -1,10 +1,6 @@ require_relative '../../spec_helper' describe "Fiber.current" do - it "is available without an extra require" do - ruby_exe("print Fiber.current.class", options: '--disable-gems --disable-did-you-mean').should == "Fiber" - end - it "returns the root Fiber when called outside of a Fiber" do root = Fiber.current root.should be_an_instance_of(Fiber)