Sha256: 2b7060680752fb229156fdb2f9255561813ebad843d47965e8f965d44fbe181b

Contents?: true

Size: 527 Bytes

Versions: 9

Compression:

Stored size: 527 Bytes

Contents

# frozen_string_literal: true

require "debug"

module Command
  class Test < Base
    NAME = "test"
    OPTIONS = all_options
    DESCRIPTION = "For debugging purposes"
    LONG_DESCRIPTION = <<~DESC
      - For debugging purposes
    DESC
    HIDE = true

    def call
      # Modify this method to trigger the code you want to test.
      # You can use `debugger` to debug.
      # You can use `Cpl::Cli.start` to simulate a command
      # (e.g., `Cpl::Cli.start(["deploy-image", "-a", "my-app-name"])`).
    end
  end
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
cpl-1.4.0 lib/command/test.rb
cpl-1.3.0 lib/command/test.rb
cpl-1.2.0 lib/command/test.rb
cpl-1.1.2 lib/command/test.rb
cpl-1.1.2.rc.0 lib/command/test.rb
cpl-1.1.1 lib/command/test.rb
cpl-1.1.0 lib/command/test.rb
cpl-1.0.4 lib/command/test.rb
cpl-1.0.3 lib/command/test.rb