File: avatar_spec.rb

package info (click to toggle)
ruby-gitlab 6.1.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,824 kB
  • sloc: ruby: 12,742; makefile: 7; sh: 4; javascript: 3
file content (17 lines) | stat: -rw-r--r-- 460 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Gitlab::Client do
  describe '.avatar' do
    before do
      stub_get('/avatar', 'avatar').with(query: { email: 'admin@example.com', size: 32 })
      @avatar = Gitlab.avatar(email: 'admin@example.com', size: 32)
    end

    it 'gets the correct resource' do
      expect(a_get('/avatar')
        .with(query: { email: 'admin@example.com', size: 32 })).to have_been_made
    end
  end
end