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

def marshal_load(ary)

def marshal_load(ary)
  @seed = ary.pop
  @mt = MT19937.allocate
  @mt.marshal_load(ary)
end