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

describe "Thread.pass" do
  it "returns nil" do
    Thread.pass.should == nil
  end
end