class SequelSpec::Matchers::Validation::ValidateNotNullMatcher
Public Instance Methods
description()
click to toggle source
# File lib/sequel_spec/validation/validate_not_null_matcher.rb, line 5 def description desc = "validate that #{@attribute.inspect} is not null" desc << " with option(s) #{hash_to_nice_string @options}" unless @options.empty? desc end
validation_type()
click to toggle source
# File lib/sequel_spec/validation/validate_not_null_matcher.rb, line 11 def validation_type :validates_not_null end