ManageIQ/floe

View on GitHub
lib/floe/workflow/states/map.rb

Summary

Maintainability
A
0 mins
Test Coverage
C
71%
# frozen_string_literal: true

module Floe
  class Workflow
    module States
      class Map < Floe::Workflow::State
        def initialize(*)
          super
          raise NotImplementedError
        end
      end
    end
  end
end