summaryrefslogtreecommitdiff
path: root/spec/rubyspec/core/thread/current_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/rubyspec/core/thread/current_spec.rb')
-rw-r--r--spec/rubyspec/core/thread/current_spec.rb15
1 files changed, 0 insertions, 15 deletions
diff --git a/spec/rubyspec/core/thread/current_spec.rb b/spec/rubyspec/core/thread/current_spec.rb
deleted file mode 100644
index cc969b71c4..0000000000
--- a/spec/rubyspec/core/thread/current_spec.rb
+++ /dev/null
@@ -1,15 +0,0 @@
-require File.expand_path('../../../spec_helper', __FILE__)
-require File.expand_path('../fixtures/classes', __FILE__)
-
-describe "Thread.current" do
- it "returns a thread" do
- current = Thread.current
- current.should be_kind_of(Thread)
- end
-
- it "returns the current thread" do
- t = Thread.new { Thread.current }
- t.value.should equal(t)
- Thread.current.should_not equal(t.value)
- end
-end