gitlab-org--gitlab-foss/spec/services/applications/create_service_spec.rb

14 lines
405 B
Ruby
Raw Normal View History

2017-10-24 06:38:06 +00:00
require 'spec_helper'
describe ::Applications::CreateService do
let(:user) { create(:user) }
let(:params) { attributes_for(:application) }
2017-11-02 07:49:36 +00:00
let(:request) { ActionController::TestRequest.new(remote_ip: '127.0.0.1') }
2017-10-24 06:38:06 +00:00
subject { described_class.new(user, params) }
it 'creates an application' do
2017-11-02 07:49:36 +00:00
expect { subject.execute(request) }.to change { Doorkeeper::Application.count }.by(1)
2017-10-24 06:38:06 +00:00
end
end