Welcome to mirror list, hosted at ThFree Co, Russian Federation.

be_sorted_spec.rb « matchers « support_specs « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e62bc9b36b30ed8fb71c46619c777851e7748a1b (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
# frozen_string_literal: true

require 'fast_spec_helper'

load File.expand_path('../../../spec/support/matchers/be_sorted.rb', __dir__)

RSpec.describe 'be_sorted' do
  it 'matches empty collections, regardless of arguments' do
    expect([])
      .to be_sorted
      .and be_sorted.asc
      .and be_sorted.desc
      .and be_sorted(:foo)
      .and be_sorted(:bar)

    expect([].to_set).to be_sorted
    expect({}).to be_sorted
  end

  it 'matches in both directions' do
    expect([1, 2, 3]).to be_sorted.asc
    expect([3, 2, 1]).to be_sorted.desc
  end

  it 'can match on a projection' do
    xs = [['a', 10], ['b', 7], ['c', 4]]

    expect(xs).to be_sorted.asc.by(&:first)
    expect(xs).to be_sorted(:first, :asc)
    expect(xs).to be_sorted.desc.by(&:second)
    expect(xs).to be_sorted(:second, :desc)
  end
end