summaryrefslogtreecommitdiff
path: root/spec/ruby/library/set/initialize_spec.rb
blob: 887cae45fcb69b9142817942bcac60e56e6b39ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
require_relative '../../spec_helper'
require 'set'

describe "Set#initialize" do
  it "is private" do
    Set.should have_private_instance_method(:initialize)
  end

  it "adds all elements of the passed Enumerable to self" do
    s = Set.new([1, 2, 3])
    s.size.should eql(3)
    s.should include(1)
    s.should include(2)
    s.should include(3)
  end

  it "should initialize with empty array and set" do
    s = Set.new([])
    s.size.should eql(0)

    s = Set.new({})
    s.size.should eql(0)
  end

  it "preprocesses all elements by a passed block before adding to self" do
    s = Set.new([1, 2, 3]) { |x| x * x }
    s.size.should eql(3)
    s.should include(1)
    s.should include(4)
    s.should include(9)
  end

  it "should initialize with empty array and block" do
    s = Set.new([]) { |x| x * x }
    s.size.should eql(0)
  end

  it "should initialize with empty set and block" do
    s = Set.new(Set.new) { |x| x * x }
    s.size.should eql(0)
  end

  it "should initialize with just block" do
    s = Set.new { |x| x * x }
    s.size.should eql(0)
    s.should eql(Set.new)
  end
end