Bump development gems

- brakeman
- rubocop
- scss_lint
This commit is contained in:
gregoirenovel 2018-03-02 16:27:03 +01:00
parent 1030a4ae7d
commit d6ad3fc3fd
42 changed files with 99 additions and 94 deletions

View file

@ -163,12 +163,12 @@ describe AttestationTemplate, type: :model do
dossier.champs
.select { |champ| champ.libelle == 'libelleA' }
.first
.update_attributes(value: 'libelle1')
.update(value: 'libelle1')
dossier.champs
.select { |champ| champ.libelle == 'libelleB' }
.first
.update_attributes(value: 'libelle2')
.update(value: 'libelle2')
end
it { expect(view_args[:title]).to eq('title libelle1') }