Cover Admin::ReportsController more (#3346)

This commit is contained in:
Akihiko Odaki 2017-05-30 01:12:34 +09:00 committed by Eugen Rochko
parent 7b92950f1c
commit 34157d118c
1 changed files with 16 additions and 5 deletions

View File

@ -10,27 +10,38 @@ describe Admin::ReportsController do
describe 'GET #index' do describe 'GET #index' do
it 'returns http success with no filters' do it 'returns http success with no filters' do
allow(Report).to receive(:unresolved).and_return(Report.all) specified = Fabricate(:report, action_taken: false)
Fabricate(:report, action_taken: true)
get :index get :index
reports = assigns(:reports).to_a
expect(reports.size).to eq 1
expect(reports[0]).to eq specified
expect(response).to have_http_status(:success) expect(response).to have_http_status(:success)
expect(Report).to have_received(:unresolved)
end end
it 'returns http success with resolved filter' do it 'returns http success with resolved filter' do
allow(Report).to receive(:resolved).and_return(Report.all) specified = Fabricate(:report, action_taken: true)
Fabricate(:report, action_taken: false)
get :index, params: { resolved: 1 } get :index, params: { resolved: 1 }
reports = assigns(:reports).to_a
expect(reports.size).to eq 1
expect(reports[0]).to eq specified
expect(response).to have_http_status(:success) expect(response).to have_http_status(:success)
expect(Report).to have_received(:resolved)
end end
end end
describe 'GET #show' do describe 'GET #show' do
it 'returns http success' do it 'renders report' do
report = Fabricate(:report) report = Fabricate(:report)
get :show, params: { id: report } get :show, params: { id: report }
expect(assigns(:report)).to eq report
expect(response).to have_http_status(:success) expect(response).to have_http_status(:success)
end end
end end