HEX
Server: Apache
System: Linux s198.coreserver.jp 5.15.0-151-generic #161-Ubuntu SMP Tue Jul 22 14:25:40 UTC 2025 x86_64
User: nagasaki (10062)
PHP: 7.1.33
Disabled: NONE
Upload Files
File: //usr/local/rvm/src/ruby-2.5.9/spec/ruby/library/set/shared/union.rb
describe :set_union, shared: true do
  before :each do
    @set = Set[:a, :b, :c]
  end

  it "returns a new Set containing all elements of self and the passed Enumerable" do
    @set.send(@method, Set[:b, :d, :e]).should == Set[:a, :b, :c, :d, :e]
    @set.send(@method, [:b, :e]).should == Set[:a, :b, :c, :e]
  end

  it "raises an ArgumentError when passed a non-Enumerable" do
    lambda { @set.send(@method, 1) }.should raise_error(ArgumentError)
    lambda { @set.send(@method, Object.new) }.should raise_error(ArgumentError)
  end
end