about summary refs log tree commit diff
path: root/spec/controllers/oauth
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2016-03-19 12:13:47 +0100
committerEugen Rochko <eugen@zeonfederated.com>2016-03-19 12:13:47 +0100
commitd4892ace62cd5d73d7e4958bf98fe37244811c7f (patch)
treeb80c1f506d6a27f1909ba665d02d421d50729c67 /spec/controllers/oauth
parent66a2107527485f01f54f0899fcb913f05053cd0e (diff)
Adding more test stubs
Diffstat (limited to 'spec/controllers/oauth')
-rw-r--r--spec/controllers/oauth/applications_controller_spec.rb6
1 files changed, 6 insertions, 0 deletions
diff --git a/spec/controllers/oauth/applications_controller_spec.rb b/spec/controllers/oauth/applications_controller_spec.rb
index 7f2ca8cd9..350d5d521 100644
--- a/spec/controllers/oauth/applications_controller_spec.rb
+++ b/spec/controllers/oauth/applications_controller_spec.rb
@@ -1,5 +1,11 @@
 require 'rails_helper'
 
 RSpec.describe Oauth::ApplicationsController, type: :controller do
+  describe 'GET #index' do
+    it 'returns http success'
+  end
 
+  describe 'POST #create' do
+    it 'redirects to the application page'
+  end
 end