class MimiCheck::Result::Success

Attributes

property[R]

Public Class Methods

new(property) click to toggle source
# File lib/mimicheck/result.rb, line 4
def initialize(property)
  @property = property
end

Public Instance Methods

==(other) click to toggle source
# File lib/mimicheck/result.rb, line 9
def ==(other)
  return false unless other.is_a?(self.class)
  property == other.property
end