Commit f7ca46b5 authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets

Dont test models methods in security specs

Signed-off-by: default avatarDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
parent 63044284
...@@ -23,11 +23,6 @@ describe "Group access" do ...@@ -23,11 +23,6 @@ describe "Group access" do
group.add_user(guest, Gitlab::Access::GUEST) group.add_user(guest, Gitlab::Access::GUEST)
end end
describe "Group should not have accessible projects" do
it { group.has_projects_accessible_to?(nil).should be_false }
it { group.has_projects_accessible_to?(nonmember).should be_false }
end
describe "GET /groups/:path" do describe "GET /groups/:path" do
subject { group_path(group) } subject { group_path(group) }
......
...@@ -19,11 +19,6 @@ describe "Group with internal project access" do ...@@ -19,11 +19,6 @@ describe "Group with internal project access" do
create(:project, group: group, visibility_level: Gitlab::VisibilityLevel::INTERNAL) create(:project, group: group, visibility_level: Gitlab::VisibilityLevel::INTERNAL)
end end
describe "Group should have accessible projects for users" do
it { group.has_projects_accessible_to?(nil).should be_false }
it { group.has_projects_accessible_to?(nonmember).should be_true }
end
describe "GET /groups/:path" do describe "GET /groups/:path" do
subject { group_path(group) } subject { group_path(group) }
......
...@@ -20,11 +20,6 @@ describe "Group access" do ...@@ -20,11 +20,6 @@ describe "Group access" do
create(:project, path: "public_project", group: group, visibility_level: Gitlab::VisibilityLevel::PUBLIC) create(:project, path: "public_project", group: group, visibility_level: Gitlab::VisibilityLevel::PUBLIC)
end end
describe "Group should have accessible projects" do
it { group.has_projects_accessible_to?(nil).should be_true }
it { group.has_projects_accessible_to?(nonmember).should be_true }
end
describe "GET /groups/:path" do describe "GET /groups/:path" do
subject { group_path(group) } subject { group_path(group) }
......
...@@ -19,11 +19,6 @@ describe "Group with public project access" do ...@@ -19,11 +19,6 @@ describe "Group with public project access" do
create(:project, group: group, visibility_level: Gitlab::VisibilityLevel::PUBLIC) create(:project, group: group, visibility_level: Gitlab::VisibilityLevel::PUBLIC)
end end
describe "Group should have accessible projects" do
it { group.has_projects_accessible_to?(nil).should be_true }
it { group.has_projects_accessible_to?(nonmember).should be_true }
end
describe "GET /groups/:path" do describe "GET /groups/:path" do
subject { group_path(group) } subject { group_path(group) }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment