Exception: Assay::NilFailure

Inherits:
CompareFailure show all
Defined in:
lib/assay/assertions/nil_failure.rb

Constant Summary

Constants inherited from Assertion

Assertion::SIZE_LIMIT

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from Assertion

assert, #assert, assertable_method, #assertion?, #fail?, fail?, #initialize, #negative?, #pass?, refute, #refute, #set_arguments, #set_negative, to_matcher

Constructor Details

This class inherits a constructor from Assay::Assertion

Class Method Details

.assertion_nameObject



7
8
9
# File 'lib/assay/assertions/nil_failure.rb', line 7

def self.assertion_name
  :nil
end

.assertion_operatorObject



11
12
13
# File 'lib/assay/assertions/nil_failure.rb', line 11

def self.assertion_operator
  :nil?
end

.pass?(exp) ⇒ Boolean

Check assertion.

Returns:

  • (Boolean)


16
17
18
# File 'lib/assay/assertions/nil_failure.rb', line 16

def self.pass?(exp)
  exp.nil?
end

Instance Method Details

#to_sObject



21
22
23
24
25
26
27
28
29
30
31
32
# File 'lib/assay/assertions/nil_failure.rb', line 21

def to_s
  return @mesg if @mesg
  return super unless @arguments.size == 1

  exp = @arguments[0].inspect

  if @_negated
    "Expected #{exp} to NOT be nil"
  else
    "Expected #{exp} to be nil"
  end
end