summaryrefslogtreecommitdiff
path: root/spec/ruby/core/enumerable/sort_by_spec.rb
blob: 8fdd923fb44c24ca2386966efb7ac4d853d66cf9 (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
require_relative '../../spec_helper'
require_relative 'fixtures/classes'
require_relative 'shared/enumerable_enumeratorized'

describe "Enumerable#sort_by" do
  it "returns an array of elements ordered by the result of block" do
    a = EnumerableSpecs::Numerous.new("once", "upon", "a", "time")
    a.sort_by { |i| i[0] }.should == ["a", "once", "time", "upon"]
  end

  it "sorts the object by the given attribute" do
    a = EnumerableSpecs::SortByDummy.new("fooo")
    b = EnumerableSpecs::SortByDummy.new("bar")

    ar = [a, b].sort_by { |d| d.s }
    ar.should == [b, a]
  end

  it "returns an Enumerator when a block is not supplied" do
    a = EnumerableSpecs::Numerous.new("a","b")
    a.sort_by.should be_an_instance_of(Enumerator)
    a.to_a.should == ["a", "b"]
  end

  it "gathers whole arrays as elements when each yields multiple" do
    multi = EnumerableSpecs::YieldsMulti.new
    multi.sort_by {|e| e.size}.should == [[1, 2], [3, 4, 5], [6, 7, 8, 9]]
  end

  it "returns an array of elements when a block is supplied and #map returns an enumerable" do
    b = EnumerableSpecs::MapReturnsEnumerable.new
    b.sort_by{ |x| -x }.should == [3, 2, 1]
  end

  it "calls #each to iterate over the elements to be sorted" do
    b = EnumerableSpecs::Numerous.new( 1, 2, 3 )
    b.should_receive(:each).once.and_yield(1).and_yield(2).and_yield(3)
    b.should_not_receive :map
    b.sort_by { |x| -x }.should == [3, 2, 1]
  end

  it_behaves_like :enumerable_enumeratorized_with_origin_size, :sort_by
end