# File lib/more/facets/duration.rb, line 94
  def ==(other)
    if Duration === other
      other.seconds == seconds
    else
      other == seconds
    end
  end