aboutsummaryrefslogtreecommitdiffstats
path: root/features/step_definitions/general_steps.rb
blob: cb3a6a69ce71af53d398f8827fd89f220815c6a2 (plain)
1
2
3
4
5
6
7
8
9
10
# language: fr

##### Alors #####
Alors(/^je ne dois pas pouvoir visiter la page (.+)$/) do |name|
  case name
    when "d'accueil"
      visit root_path
  end
  expect(page.status_code).to eq(403)
end