Sha256: b5e5e964c6f0baf9ffaba691d2267bc8c49c5c403fe5628db16ffb8d988e5a45

Contents?: true

Size: 561 Bytes

Versions: 2

Compression:

Stored size: 561 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 `Cpflow::Cli.start` to simulate a command
      # (e.g., `Cpflow::Cli.start(["deploy-image", "-a", "my-app-name"])`).
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
cpflow-3.0.1 lib/command/test.rb
cpflow-3.0.0 lib/command/test.rb