diff options
author | Valery Sizov <vsv2711@gmail.com> | 2015-12-28 13:32:18 +0200 |
---|---|---|
committer | Valery Sizov <vsv2711@gmail.com> | 2016-01-04 16:00:29 +0200 |
commit | 8b1844912561a7e6dd0cc361ea1514f2a340e275 (patch) | |
tree | 9a6c705fb9ac1c1e6c28f5ed712025c0b020fd1c /spec/models/group_spec.rb | |
parent | 57074d606b20516921ff2297e2f94262b58e3d3e (diff) | |
download | gitlab-ce-8b1844912561a7e6dd0cc361ea1514f2a340e275.tar.gz |
remove public field from namespace and refactoringnamespace-clean_up
Diffstat (limited to 'spec/models/group_spec.rb')
-rw-r--r-- | spec/models/group_spec.rb | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/spec/models/group_spec.rb b/spec/models/group_spec.rb index 646f767e6fe..ba5acceadff 100644 --- a/spec/models/group_spec.rb +++ b/spec/models/group_spec.rb @@ -38,14 +38,6 @@ describe Group, models: true do it { is_expected.not_to validate_presence_of :owner } end - describe '.public_and_given_groups' do - let!(:public_group) { create(:group, public: true) } - - subject { described_class.public_and_given_groups([group.id]) } - - it { is_expected.to eq([public_group, group]) } - end - describe '.visible_to_user' do let!(:group) { create(:group) } let!(:user) { create(:user) } @@ -112,23 +104,4 @@ describe Group, models: true do expect(group.avatar_type).to eq(["only images allowed"]) end end - - describe "public_profile?" do - it "returns true for public group" do - group = create(:group, public: true) - expect(group.public_profile?).to be_truthy - end - - it "returns true for non-public group with public project" do - group = create(:group) - create(:project, :public, group: group) - expect(group.public_profile?).to be_truthy - end - - it "returns false for non-public group with no public projects" do - group = create(:group) - create(:project, group: group) - expect(group.public_profile?).to be_falsy - end - end end |