Method: NoSE::Plans::SortPlanStep#==

Defined in:
lib/nose/plans/sort.rb

#==(other) ⇒ Object Also known as: eql?

Two sorting steps are equal if they sort on the same fields



23
24
25
# File 'lib/nose/plans/sort.rb', line 23

def ==(other)
  other.instance_of?(self.class) && @sort_fields == other.sort_fields
end