Sha256: 8c82a70e829a8f2023d98418a6000318efb096e4d4e39470b1cda7c4b121eed5
Contents?: true
Size: 472 Bytes
Versions: 38
Compression:
Stored size: 472 Bytes
Contents
# coding: UTF-8 # Marks scenario as pending Then /^it should work$/ do pending end # Starts debugger, or Pry if installed Then /^debugger$/ do if binding.respond_to? :pry binding.pry else debugger end true # Ruby will halt in this line end # Waits 2 seconds after each step AfterStep('@slow-motion') do sleep 2 end # Waits for keypress after each step AfterStep('@single-step') do print "Single Stepping. Hit enter to continue" STDIN.getc end
Version data entries
38 entries across 38 versions & 1 rubygems