Sha256: a7780631a3122c9f92bf859ba3d9bb60cd6c2f8e62af0ac12057cd2afb918f2b

Contents?: true

Size: 1.34 KB

Versions: 2

Compression:

Stored size: 1.34 KB

Contents

require_relative 'test_helper'

describe "Help Command" do
  include TestDsl
  include Columnize

  let(:available_commands) do
    Debugger::Command.commands.select(&:event).map(&:help_command).flatten.uniq.sort
  end

  it "must show help how to use 'help'" do
    temporary_change_hash_value(Debugger::HelpCommand.settings, :width, 50) do
      enter 'help'
      debug_file('help')
      check_output_includes(
        "Type 'help <command-name>' for help on a specific command",
        "Available commands:",
        columnize(available_commands, 50)
      )
    end
  end

  it "must show help when use shortcut" do
    enter 'h'
    debug_file('help')
    check_output_includes "Type 'help <command-name>' for help on a specific command"
  end

  it "must show an error if undefined command is specified" do
    enter 'help foobar'
    debug_file('help')
    check_output_includes 'Undefined command: "foobar".  Try "help".', interface.error_queue
  end

  it "must show a command's help" do
    enter 'help break'
    debug_file('help')
    check_output_includes Debugger::AddBreakpoint.help(nil).split("\n").map { |l| l.gsub(/^ +/, '') }.join("\n")
  end


  describe "Post Mortem" do
    it "must work in post-mortem mode"
    0.times do
      enter 'cont', 'help'
      debug_file "post_mortem"
      check_output_includes "Available commands:"
    end
  end

end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
debugger2-1.0.0.beta2 test/help_test.rb
debugger2-1.0.0.beta1 test/help_test.rb