diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2016-09-09 20:04:34 +0200 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2016-09-09 20:04:34 +0200 |
commit | 3cc47beb6e1f646baca64fdf56168e2f2e2bc726 (patch) | |
tree | 295d9442bec8fa7434b6a2c37a6cb835a3725dfd /spec/controllers | |
parent | 735b4cc62e3fb9ef7a10b657c8e437ac0cb3d1fe (diff) |
Refactored generation of unique tags, URIs and object URLs into own classes,
as well as formatting of content
Diffstat (limited to 'spec/controllers')
-rw-r--r-- | spec/controllers/oauth/applications_controller_spec.rb | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/spec/controllers/oauth/applications_controller_spec.rb b/spec/controllers/oauth/applications_controller_spec.rb index 350d5d521..ecd8b16c6 100644 --- a/spec/controllers/oauth/applications_controller_spec.rb +++ b/spec/controllers/oauth/applications_controller_spec.rb @@ -1,8 +1,15 @@ require 'rails_helper' RSpec.describe Oauth::ApplicationsController, type: :controller do + before do + sign_in Fabricate(:user), scope: :user + end + describe 'GET #index' do - it 'returns http success' + it 'returns http success' do + get :index + expect(response).to have_http_status(:success) + end end describe 'POST #create' do |