vidmantas/cucumberator

View on GitHub
lib/cucumberator/commands/exit.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Cucumberator::Commands
  class Exit
    class << self
      # return value - wants to quit?
      def perform(*args, &block)
        true
      end
    end
  end
end