Skip to content

Commit

Permalink
SCENARIO : Delete a picture from a document (see #187)
Browse files Browse the repository at this point in the history
Co-Authored-By: Fabien Petit <fabien.petit@users.noreply.github.com>
Co-Authored-By: Louis Duhal Berruer <louisduhalberruer@users.noreply.github.com>
  • Loading branch information
3 people authored and nitram35 committed Jun 19, 2024
1 parent 8dcef48 commit e5af497
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 0 deletions.
11 changes: 11 additions & 0 deletions features/delete_image_in_document.feature
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
#language: fr

Fonctionnalité: Supprimer une image d'une glose

Scénario: dont on est l'auteur

Soit un document dont je suis l'auteur affiché comme glose
Et une session active avec mon compte
Et une image "architecture.png" dans une glose
Quand j'essaye de supprimer l'image "architecture.png" d'une glose
Alors je ne vois pas l'image "architecture.png"
4 changes: 4 additions & 0 deletions features/step_definitions/event.rb
Original file line number Diff line number Diff line change
Expand Up @@ -58,4 +58,8 @@

Quand("j'essaye d'ajouter l'image {string} à une glose") do |image_name|
attach_file("image-input", File.expand_path("./docs/#{image_name}"), make_visible: true)
end

Quand("j'essaye de supprimer une image d'une glose") do
pending # Write code here that turns the phrase above into concrete actions
end
4 changes: 4 additions & 0 deletions features/step_definitions/outcome.rb
Original file line number Diff line number Diff line change
Expand Up @@ -85,4 +85,8 @@

Alors("je ne vois pas le document intitulé {string}") do |title|
expect(page).not_to have_content(title)
end

Alors("l'image disparait dans la glose") do
pending
end

0 comments on commit e5af497

Please sign in to comment.