Method: SimpleJSONSchema::Validators::Null#validate

Defined in:
lib/simple_json_schema/validators/null.rb

#validate(scope) ⇒ Object



6
7
8
# File 'lib/simple_json_schema/validators/null.rb', line 6

def validate(scope)
  scope.error(:null) unless scope.value.nil?
end