Add path field to procedure information form

This commit is contained in:
Paul Chavard 2018-09-19 17:12:12 +02:00
parent f6a6d8f457
commit f94a24d7ce
12 changed files with 176 additions and 32 deletions

View file

@ -6,6 +6,7 @@ describe Admin::ProceduresController, type: :controller do
let(:bad_procedure_id) { 100000 }
let(:path) { 'ma-jolie-demarche' }
let(:libelle) { 'Démarche de test' }
let(:description) { 'Description de test' }
let(:organisation) { 'Organisation de test' }
@ -20,6 +21,7 @@ describe Admin::ProceduresController, type: :controller do
let(:procedure_params) {
{
path: path,
libelle: libelle,
description: description,
organisation: organisation,