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

18 lines
524 B
Ruby
Raw Normal View History

require "spec_helper"
2017-10-24 06:38:06 +00:00
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
2017-10-24 06:38:06 +00:00
subject { described_class.new(user, params) }
it { expect { subject.execute(request) }.to change { Doorkeeper::Application.count }.by(1) }
2017-10-24 06:38:06 +00:00
end