mirror of
https://github.com/openSUSE/osem.git
synced 2026-02-07 04:31:00 -05:00
16 lines
298 B
Ruby
16 lines
298 B
Ruby
require 'spec_helper'
|
|
|
|
describe OrganizationsController do
|
|
let!(:organization) { create(:organization) }
|
|
let!(:user) { create(:user) }
|
|
|
|
describe 'GET #index' do
|
|
before :each do
|
|
sign_in user
|
|
get :index
|
|
end
|
|
|
|
it { expect(response).to render_template('index') }
|
|
end
|
|
end
|