Merge pull request #2284 from consul/feature/2276#admin_budget_edit_redirect

Redirect admin to budget lists after edit
This commit is contained in:
BertoCQ
2018-01-09 10:50:54 +01:00
committed by GitHub
2 changed files with 20 additions and 1 deletions

View File

@@ -27,7 +27,7 @@ class Admin::BudgetsController < Admin::BaseController
def update
if @budget.update(budget_params)
redirect_to admin_budget_path(@budget), notice: t('admin.budgets.update.notice')
redirect_to admin_budgets_path, notice: t('admin.budgets.update.notice')
else
render :edit
end

View File

@@ -109,6 +109,25 @@ feature 'Admin budgets' do
end
context 'Update' do
background do
create(:budget)
end
scenario 'Update budget' do
visit admin_budgets_path
click_link 'Edit budget'
fill_in 'budget_name', with: 'More trees on the streets'
click_button 'Update Participatory budget'
expect(page).to have_content('More trees on the streets')
expect(page).to have_current_path(admin_budgets_path)
end
end
context "Calculate Budget's Winner Investments" do
scenario 'For a Budget in reviewing balloting' do