diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2016-03-19 12:13:47 +0100 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2016-03-19 12:13:47 +0100 |
commit | d4892ace62cd5d73d7e4958bf98fe37244811c7f (patch) | |
tree | b80c1f506d6a27f1909ba665d02d421d50729c67 /spec/controllers/api/statuses_controller_spec.rb | |
parent | 66a2107527485f01f54f0899fcb913f05053cd0e (diff) |
Adding more test stubs
Diffstat (limited to 'spec/controllers/api/statuses_controller_spec.rb')
-rw-r--r-- | spec/controllers/api/statuses_controller_spec.rb | 22 |
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 |