File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
features/step_definitions Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
1
When "I step over" do
2
2
vdebug . step_over
3
- vdebug . running? . should be ( true ) , ' Vdebug is not running'
3
+ vdebug . running? . should be ( true ) , " Vdebug is not running: #{ vdebug . messages } "
4
4
end
5
5
6
6
When "I step in" do
7
7
vdebug . step_in
8
- vdebug . running? . should be ( true ) , ' Vdebug is not running'
8
+ vdebug . running? . should be ( true ) , " Vdebug is not running: #{ vdebug . messages } "
9
9
end
Original file line number Diff line number Diff line change 1
1
When "I evaluate $expression" do |expr |
2
2
vdebug . evaluate expr
3
- vdebug . running? . should be ( true ) , ' Vdebug is not running'
3
+ vdebug . running? . should be ( true ) , " Vdebug is not running: #{ vdebug . messages } "
4
4
end
Original file line number Diff line number Diff line change 2
2
vdebug . start_listening
3
3
full_script_path = Dir . getwd + "/" + script
4
4
run_php_script full_script_path
5
- vdebug . running? . should be ( true ) , ' Vdebug is not running'
5
+ vdebug . running? . should be ( true ) , " Vdebug is not running: #{ vdebug . messages } "
6
6
end
You can’t perform that action at this time.
0 commit comments