File: sorting_spec.rb

package info (click to toggle)
ruby-hamster 3.0.0-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 1,932 kB
  • sloc: ruby: 16,915; makefile: 4
file content (57 lines) | stat: -rw-r--r-- 1,615 bytes parent folder | download | duplicates (2)
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
49
50
51
52
53
54
55
56
57
require "spec_helper"
require "hamster/vector"

describe Hamster::Vector do
  [
    [:sort, ->(left, right) { left.length <=> right.length }],
    [:sort_by, ->(item) { item.length }],
  ].each do |method, comparator|
    describe "##{method}" do
      [
        [[], []],
        [["A"], ["A"]],
        [%w[Ichi Ni San], %w[Ni San Ichi]],
      ].each do |values, expected|
        describe "on #{values.inspect}" do
          let(:vector) { V[*values] }

          context "with a block" do
            it "preserves the original" do
              vector.send(method, &comparator)
              vector.should eql(V[*values])
            end

            it "returns #{expected.inspect}" do
              vector.send(method, &comparator).should eql(V[*expected])
            end
          end

          context "without a block" do
            it "preserves the original" do
              vector.send(method)
              vector.should eql(V[*values])
            end

            it "returns #{expected.sort.inspect}" do
              vector.send(method).should eql(V[*expected.sort])
            end
          end
        end
      end

      [10, 31, 32, 33, 1023, 1024, 1025].each do |size|
        context "on a #{size}-item vector" do
          it "behaves like Array#{method}" do
            array = size.times.map { rand(10000) }
            vector = V.new(array)
            if method == :sort
              vector.sort.should == array.sort
            else
              vector.sort_by { |x| -x }.should == array.sort_by { |x| -x }
            end
          end
        end
      end
    end
  end
end