summaryrefslogtreecommitdiff
path: root/spec/ruby/core/thread/main_spec.rb
blob: ec917095760f338c6bd86aafc79ae32e84043c6e (plain)
1
2
3
4
5
6
7
8
9
10
require_relative '../../spec_helper'
require_relative 'fixtures/classes'

describe "Thread.main" do
  it "returns the main thread" do
    Thread.new { @main = Thread.main ; @current = Thread.current}.join
    @main.should_not == @current
    @main.should == Thread.current
  end
end