debian-mirror-gitlab/spec/services/milestones/create_service_spec.rb
2023-05-27 22:25:52 +05:30

26 lines
623 B
Ruby

# frozen_string_literal: true
require 'spec_helper'
RSpec.describe Milestones::CreateService, feature_category: :team_planning do
let(:project) { create(:project) }
let(:user) { create(:user) }
describe '#execute' do
context "valid params" do
before do
project.add_maintainer(user)
opts = {
title: 'v2.1.9',
description: 'Patch release to fix security issue'
}
@milestone = described_class.new(project, user, opts).execute
end
it { expect(@milestone).to be_valid }
it { expect(@milestone.title).to eq('v2.1.9') }
end
end
end