Sha256: a8021a4c68be701bf3e4e766fa20d1a1051747fb93b5393b5ed77a76cf56aad8

Contents?: true

Size: 555 Bytes

Versions: 4

Compression:

Stored size: 555 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
    VALIDATIONS = [].freeze

    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

4 entries across 4 versions & 1 rubygems

Version Path
cpl-2.2.4 lib/command/test.rb
cpl-2.2.2 lib/command/test.rb
cpl-2.2.1 lib/command/test.rb
cpl-2.2.0 lib/command/test.rb