mirror of
https://github.com/discourse/discourse.git
synced 2025-09-06 10:50:21 +08:00
Merge pull request #5369 from vinothkannans/queued
FIX: Error if queued post not found while updating
This commit is contained in:
commit
1d8b834301
3 changed files with 17 additions and 0 deletions
|
@ -31,6 +31,20 @@ describe QueuedPostsController do
|
|||
let!(:user) { log_in(:moderator) }
|
||||
let(:qp) { Fabricate(:queued_post) }
|
||||
|
||||
context 'not found' do
|
||||
it 'returns json error' do
|
||||
qp.destroy!
|
||||
|
||||
put :update, params: {
|
||||
id: qp.id, queued_post: { state: 'approved' }
|
||||
}, format: :json
|
||||
|
||||
expect(response.status).to eq(422)
|
||||
|
||||
expect(eval(response.body)).to eq(described_class.new.create_errors_json(I18n.t('queue.not_found')))
|
||||
end
|
||||
end
|
||||
|
||||
context 'approved' do
|
||||
it 'updates the post to approved' do
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue