Dont test models methods in security specs
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
This commit is contained in:
parent
6304428467
commit
f7ca46b5a3
4 changed files with 2 additions and 22 deletions
|
@ -23,11 +23,6 @@ describe "Group access" do
|
|||
group.add_user(guest, Gitlab::Access::GUEST)
|
||||
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
|
||||
subject { group_path(group) }
|
||||
|
||||
|
|
|
@ -19,11 +19,6 @@ describe "Group with internal project access" do
|
|||
create(:project, group: group, visibility_level: Gitlab::VisibilityLevel::INTERNAL)
|
||||
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
|
||||
subject { group_path(group) }
|
||||
|
||||
|
|
|
@ -20,11 +20,6 @@ describe "Group access" do
|
|||
create(:project, path: "public_project", group: group, visibility_level: Gitlab::VisibilityLevel::PUBLIC)
|
||||
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
|
||||
subject { group_path(group) }
|
||||
|
||||
|
|
|
@ -19,11 +19,6 @@ describe "Group with public project access" do
|
|||
create(:project, group: group, visibility_level: Gitlab::VisibilityLevel::PUBLIC)
|
||||
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
|
||||
subject { group_path(group) }
|
||||
|
||||
|
|
Loading…
Reference in a new issue