File: catch_test.rb

package info (click to toggle)
ruby-byebug 11.1.3-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,252 kB
  • sloc: ruby: 8,835; ansic: 1,662; sh: 6; makefile: 4
file content (31 lines) | stat: -rw-r--r-- 693 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# frozen_string_literal: true

require "test_helper"

module Byebug
  #
  # Tests exception catching
  #
  class CatchTest < TestCase
    def test_catch_adds_catchpoints
      enter "catch NoMethodError"
      debug_code(minimal_program)

      assert_equal 1, Byebug.catchpoints.size
    end

    def test_catch_removes_specific_catchpoint
      enter "catch NoMethodError", "catch NoMethodError off"
      debug_code(minimal_program)

      assert_empty Byebug.catchpoints
    end

    def test_catch_off_removes_all_catchpoints_after_confirmation
      enter "catch NoMethodError", "catch off", "y"
      debug_code(minimal_program)

      assert_empty Byebug.catchpoints
    end
  end
end