class CExpectationsHook

Public Instance Methods

default_smell_exceptions() click to toggle source
# File lib/expectations_hook.rb, line 8
def default_smell_exceptions
  LOGIC_SMELLS + FUNCTIONAL_SMELLS + OBJECT_ORIENTED_SMELLS + ['HasWrongCaseIdentifiers']
end
language() click to toggle source
# File lib/expectations_hook.rb, line 4
def language
  'C'
end
parse_response(response) click to toggle source
Calls superclass method
# File lib/expectations_hook.rb, line 12
def parse_response(response)
  super.uniq
end