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

21 lines
726 B
Ruby
Raw Normal View History

require 'spec_helper'
describe Groups::CreateService, services: true do
2016-03-18 12:28:16 +00:00
let!(:user) { create(:user) }
let!(:group_params) { { path: "group_path", visibility_level: Gitlab::VisibilityLevel::PUBLIC } }
describe "execute" do
2016-03-17 22:42:46 +00:00
let!(:service) { described_class.new(user, group_params ) }
subject { service.execute }
context "create groups without restricted visibility level" do
2016-03-17 22:42:46 +00:00
it { is_expected.to be_persisted }
end
context "cannot create group with restricted visibility level" do
before { allow(current_application_settings).to receive(:restricted_visibility_levels).and_return([Gitlab::VisibilityLevel::PUBLIC]) }
2016-03-17 22:42:46 +00:00
it { is_expected.to_not be_persisted }
end
end
end