BigW Consortium Gitlab

projects_controller_spec.rb 630 Bytes
Newer Older
PotHix committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
require 'spec_helper'

describe Admin::ProjectsController do
  let!(:project) { create(:project, visibility_level: Gitlab::VisibilityLevel::PUBLIC) }

  before do
    sign_in(create(:admin))
  end

  describe 'GET /projects' do
    render_views

    it 'retrieves the project for the given visibility level' do
      get :index, visibility_levels: [Gitlab::VisibilityLevel::PUBLIC]
      expect(response.body).to match(project.name)
    end

    it 'does not retrieve the project' do
      get :index, visibility_levels: [Gitlab::VisibilityLevel::INTERNAL]
      expect(response.body).to_not match(project.name)
    end
  end
end