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

create_service_spec.rb « applications « services « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9c43b56744b361d872b8e90a9aa69e175ad6eaf0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
require "spec_helper"

describe ::Applications::CreateService do
  let(:user) { create(:user) }
  let(:params) { attributes_for(:application) }
  let(:request) do
    if Gitlab.rails5?
      ActionController::TestRequest.new({ remote_ip: "127.0.0.1" }, ActionController::TestSession.new)
    else
      ActionController::TestRequest.new(remote_ip: "127.0.0.1")
    end
  end

  subject { described_class.new(user, params) }

  it { expect { subject.execute(request) }.to change { Doorkeeper::Application.count }.by(1) }
end