mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-13 19:54:02 +00:00
15 lines
259 B
Ruby
15 lines
259 B
Ruby
|
|
require 'spec_helper'
|
||
|
|
|
||
|
|
describe Admin::OrganizationsController do
|
||
|
|
let(:admin) { create(:admin) }
|
||
|
|
|
||
|
|
describe 'GET #index' do
|
||
|
|
before :each do
|
||
|
|
sign_in admin
|
||
|
|
get :index
|
||
|
|
end
|
||
|
|
|
||
|
|
it { expect(response).to render_template('index') }
|
||
|
|
end
|
||
|
|
end
|