diff options
author | Reverite <github@reverite.sh> | 2019-07-07 16:25:42 -0700 |
---|---|---|
committer | Reverite <github@reverite.sh> | 2019-07-07 16:25:42 -0700 |
commit | 7d99f12fd03cf2f861d0747c3bbcd4a8cf454d99 (patch) | |
tree | 7b166c33fefb4bf3cc6f6dee46f5883f7428d80a /spec/controllers/api/v1/statuses_controller_spec.rb | |
parent | 100bb17b1317f07c0eaa89da869f960b6cff611f (diff) | |
parent | fce885f271f8651702d606406e21677280071e40 (diff) |
Merge branch 'glitch' into production
Diffstat (limited to 'spec/controllers/api/v1/statuses_controller_spec.rb')
-rw-r--r-- | spec/controllers/api/v1/statuses_controller_spec.rb | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/spec/controllers/api/v1/statuses_controller_spec.rb b/spec/controllers/api/v1/statuses_controller_spec.rb index 8bc3b0c67..9ff5fcd3b 100644 --- a/spec/controllers/api/v1/statuses_controller_spec.rb +++ b/spec/controllers/api/v1/statuses_controller_spec.rb @@ -91,13 +91,6 @@ RSpec.describe Api::V1::StatusesController, type: :controller do expect(response).to have_http_status(404) end end - - describe 'GET #card' do - it 'returns http unautharized' do - get :card, params: { id: status.id } - expect(response).to have_http_status(404) - end - end end context 'with a public status' do @@ -120,13 +113,6 @@ RSpec.describe Api::V1::StatusesController, type: :controller do expect(response).to have_http_status(200) end end - - describe 'GET #card' do - it 'returns http success' do - get :card, params: { id: status.id } - expect(response).to have_http_status(200) - end - end end end end |