summaryrefslogtreecommitdiff
path: root/spec/serializers/request_aware_entity_spec.rb
blob: 8ddb35f5f61645cf251f7295648c86417ba5fca0 (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
# frozen_string_literal: true

require 'spec_helper'

describe RequestAwareEntity do
  subject do
    Class.new.include(described_class).new
  end

  it 'includes URL helpers' do
    expect(subject).to respond_to(:namespace_project_path)
  end

  it 'includes method for checking abilities' do
    expect(subject).to respond_to(:can?)
  end

  it 'fetches request from options' do
    expect(subject).to receive(:options)
      .and_return({ request: 'some value' })

    expect(subject.request).to eq 'some value'
  end
end