summaryrefslogtreecommitdiff
path: root/spec/rubyspec/core/thread/exit_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/rubyspec/core/thread/exit_spec.rb')
-rw-r--r--spec/rubyspec/core/thread/exit_spec.rb15
1 files changed, 0 insertions, 15 deletions
diff --git a/spec/rubyspec/core/thread/exit_spec.rb b/spec/rubyspec/core/thread/exit_spec.rb
deleted file mode 100644
index 0fb329e66f..0000000000
--- a/spec/rubyspec/core/thread/exit_spec.rb
+++ /dev/null
@@ -1,15 +0,0 @@
-require File.expand_path('../../../spec_helper', __FILE__)
-require File.expand_path('../fixtures/classes', __FILE__)
-require File.expand_path('../shared/exit', __FILE__)
-
-describe "Thread#exit!" do
- it "needs to be reviewed for spec completeness"
-end
-
-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
- end
-end