Sha256: 5d9d80a65d31a8bb0d989bc7d9899a835b9a6bd1b8f5cb2e46d325f873528c33
Contents?: true
Size: 502 Bytes
Versions: 1
Compression:
Stored size: 502 Bytes
Contents
# frozen_string_literal: true require_relative "./static" module Rack class ECG module Check # @!method initialize # Always returns a basic error for testing purposes. class Error < Static STATIC_PARAMETERS = { name: :error, success: false, value: "PC LOAD LETTER", }.freeze def initialize super(STATIC_PARAMETERS) end end CheckRegistry.instance.register(:error, Error) end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
rack-ecg-0.2.0 | lib/rack/ecg/check/error.rb |