summaryrefslogtreecommitdiff
path: root/spec/ruby/core/thread/exit_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/core/thread/exit_spec.rb')
-rw-r--r--spec/ruby/core/thread/exit_spec.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/spec/ruby/core/thread/exit_spec.rb b/spec/ruby/core/thread/exit_spec.rb
index 0fb329e66f..b2e923c680 100644
--- a/spec/ruby/core/thread/exit_spec.rb
+++ b/spec/ruby/core/thread/exit_spec.rb
@@ -1,6 +1,6 @@
-require File.expand_path('../../../spec_helper', __FILE__)
-require File.expand_path('../fixtures/classes', __FILE__)
-require File.expand_path('../shared/exit', __FILE__)
+require_relative '../../spec_helper'
+require_relative 'fixtures/classes'
+require_relative 'shared/exit'
describe "Thread#exit!" do
it "needs to be reviewed for spec completeness"
@@ -10,6 +10,6 @@ describe "Thread.exit" do
it "causes the current thread to exit" do
thread = Thread.new { Thread.exit; sleep }
thread.join
- thread.status.should be_false
+ thread.status.should == false
end
end