summaryrefslogtreecommitdiff
path: root/spec/rubyspec/core/thread/backtrace_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/rubyspec/core/thread/backtrace_spec.rb')
-rw-r--r--spec/rubyspec/core/thread/backtrace_spec.rb27
1 files changed, 0 insertions, 27 deletions
diff --git a/spec/rubyspec/core/thread/backtrace_spec.rb b/spec/rubyspec/core/thread/backtrace_spec.rb
deleted file mode 100644
index a20fdee956..0000000000
--- a/spec/rubyspec/core/thread/backtrace_spec.rb
+++ /dev/null
@@ -1,27 +0,0 @@
-require File.expand_path('../../../spec_helper', __FILE__)
-
-describe "Thread#backtrace" do
- it "returns the current backtrace of a thread" do
- t = Thread.new do
- begin
- sleep
- rescue
- end
- end
-
- Thread.pass while t.status && t.status != 'sleep'
-
- backtrace = t.backtrace
- backtrace.should be_kind_of(Array)
- backtrace.first.should =~ /`sleep'/
-
- t.raise 'finish the thread'
- t.join
- end
-
- it "returns nil for dead thread" do
- t = Thread.new {}
- t.join
- t.backtrace.should == nil
- end
-end