module RSpec::Core::Backports::Random::Implementation

def ==(other)

def ==(other)
  other.is_a?(Random) &&
    seed == other.seed &&
    left == other.send(:left) &&
    state == other.send(:state)
end