about summary refs log tree commit diff
path: root/spec/controllers/api/statuses_controller_spec.rb
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/api/statuses_controller_spec.rb
parent66a2107527485f01f54f0899fcb913f05053cd0e (diff)
Adding more test stubs
Diffstat (limited to 'spec/controllers/api/statuses_controller_spec.rb')
-rw-r--r--spec/controllers/api/statuses_controller_spec.rb22
1 files changed, 22 insertions, 0 deletions
diff --git a/spec/controllers/api/statuses_controller_spec.rb b/spec/controllers/api/statuses_controller_spec.rb
index bf84857bd..bd136a559 100644
--- a/spec/controllers/api/statuses_controller_spec.rb
+++ b/spec/controllers/api/statuses_controller_spec.rb
@@ -1,5 +1,27 @@
 require 'rails_helper'
 
 RSpec.describe Api::StatusesController, type: :controller do
+  describe 'GET #show' do
+    it 'returns http success'
+  end
 
+  describe 'GET #home' do
+    it 'returns http success'
+  end
+
+  describe 'GET #mentions' do
+    it 'returns http success'
+  end
+
+  describe 'POST #create' do
+    it 'returns http success'
+  end
+
+  describe 'POST #reblog' do
+    it 'returns http success'
+  end
+
+  describe 'POST #favourite' do
+    it 'returns http success'
+  end
 end