psantos10/Validation

View on GitHub
lib/resize/rules/is_empty.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Resize
  module Validation
    module Rules
      module IsEmpty
        private
          def is_valid?(input)
            input.empty?
          end
      end
    end
  end
end