47colborne/exel

View on GitHub
lib/exel/null_instruction.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

module EXEL
  # An {Instruction} that does nothing when executed
  class NullInstruction
    def execute(context)
    end
  end
end