ruby/spec/rubyspec/core/thread/name_spec.rb
eregon 95e8c48dd3 Add in-tree mspec and ruby/spec
* For easier modifications of ruby/spec by MRI developers.
* .gitignore: track changes under spec.
* spec/mspec, spec/rubyspec: add in-tree mspec and ruby/spec.
  These files can therefore be updated like any other file in MRI.
  Instructions are provided in spec/README.
  [Feature #13156] [ruby-core:79246]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@58595 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2017-05-07 12:04:49 +00:00

56 lines
1.2 KiB
Ruby

require File.expand_path('../../../spec_helper', __FILE__)
ruby_version_is '2.3' do
describe "Thread#name" do
before :each do
@thread = Thread.new {}
end
after :each do
@thread.join
end
it "is nil initially" do
@thread.name.should == nil
end
it "returns the thread name" do
@thread.name = "thread_name"
@thread.name.should == "thread_name"
end
end
describe "Thread#name=" do
before :each do
@thread = Thread.new {}
end
after :each do
@thread.join
end
it "can be set to a String" do
@thread.name = "new thread name"
@thread.name.should == "new thread name"
end
it "raises an ArgumentError if the name includes a null byte" do
lambda {
@thread.name = "new thread\0name"
}.should raise_error(ArgumentError)
end
it "can be reset to nil" do
@thread.name = nil
@thread.name.should == nil
end
it "calls #to_str to convert name to String" do
name = mock("Thread#name")
name.should_receive(:to_str).and_return("a thread name")
@thread.name = name
@thread.name.should == "a thread name"
end
end
end