test/continue_test.rb in byebug-1.3.0 vs test/continue_test.rb in byebug-1.3.1
- old
+ new
@@ -15,16 +15,10 @@
it "must continue up to specified line" do
enter 'cont 4'
debug_file('continue') { state.line.must_equal 4 }
end
-
- it "must not keep temporal breakpoint when line specified" do
- skip 'Not working yet, breakpoint is currently kept'
- enter 'cont 4'
- debug_file('continue') { Byebug.breakpoints.size.must_equal 0 }
- end
end
describe "unsuccessful" do
it "must ignore the command if specified line is not valid" do
enter 'cont 123'
@@ -32,11 +26,10 @@
end
it "must show error if specified line is not valid" do
enter 'cont 123'
debug_file('continue')
- check_output_includes "Line 123 is not a stopping point in file \"#{fullpath('continue')}\".", interface.error_queue
+ check_output_includes "Line 123 is not a stopping point in file " \
+ "\"#{fullpath('continue')}\"", interface.error_queue
end
-
- it "must ignore the line if the context is dead"
end
end