test/conditions_test.rb in byebug-1.8.2 vs test/conditions_test.rb in byebug-2.0.0
- old
+ new
@@ -67,15 +67,6 @@
it 'must not set breakpoint condition if breakpoint id is incorrect' do
enter 'break 3', 'cond 8 b == 3', 'cont'
debug_file('conditions') { $state.line.must_equal 3 }
end
end
-
- describe 'Post Mortem' do
- it 'must be able to set conditions in post-mortem mode' do
- enter 'cont', 'break 12', ->{ "cond #{Byebug.breakpoints.first.id} true" },
- 'cont'
- debug_file('post_mortem') { $state.line.must_equal 12 }
- end
- end
-
end