class Handler

Constants

GREEN
RED

Attributes

actual[R]
expected[R]

Public Class Methods

new(expected, actual) click to toggle source
# File lib/human_reporter.rb, line 33
def initialize(expected, actual)
  @expected = expected
  @actual = actual
end

Public Instance Methods

intersection() click to toggle source
# File lib/human_reporter.rb, line 42
def intersection
  raise "plz implement me"
end
message() click to toggle source
# File lib/human_reporter.rb, line 38
def message
  raise "plz implement me"
end
missing() click to toggle source
# File lib/human_reporter.rb, line 46
def missing
  raise "plz implement me"
end
remaining() click to toggle source
# File lib/human_reporter.rb, line 50
def remaining
  raise "plz implement me"
end