Exception: MoreAssay
- Inherits:
-
CompareAssay
- Object
- Exception
- Assertion
- CompareAssay
- MoreAssay
- Defined in:
- lib/assay/more_assay.rb
Overview
Compare assertion is used to test a comparision made by ‘#>`.
Constant Summary
Constants inherited from Assertion
Constants included from Assay::Assertable
Class Method Summary collapse
-
.pass?(subject, criterion) ⇒ Boolean
Check assertion using ‘#>` method call.
Methods inherited from CompareAssay
Methods inherited from Assertion
by_name, by_operator, inherited, register, subclasses
Methods included from Assay::Assertable
#[], #assert!, #assert_message, #assertive_name, #assertor, #fail?, #operator, #pass?, #refute!, #refute_message
Class Method Details
.pass?(subject, criterion) ⇒ Boolean
Check assertion using ‘#>` method call.
13 14 15 |
# File 'lib/assay/more_assay.rb', line 13 def self.pass?(subject, criterion) subject > criterion end |