introduce organizations

This commit is contained in:
shlok007 2017-05-31 18:42:52 +05:30
parent bf54487a19
commit 8edf896d86
21 changed files with 345 additions and 4 deletions

View file

@ -0,0 +1,14 @@
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