summaryrefslogtreecommitdiff
path: root/spec/finders/merge_requests_finder/params_spec.rb
blob: 8c285972f4823f08fd00c58a84517d74db9ea4b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe MergeRequestsFinder::Params do
  let(:user) { create(:user) }

  subject { described_class.new(params, user, MergeRequest) }

  describe 'attention' do
    context 'attention param exists' do
      let(:params) { { attention: user.username } }

      it { expect(subject.attention).to eq(user) }
    end

    context 'attention param does not exist' do
      let(:params) { { attention: nil } }

      it { expect(subject.attention).to eq(nil) }
    end
  end
end