in reply to Re^2: Non-deterministic Testing (srand)in thread Non-deterministic Testing
BEGIN { my @list = 1..100; #or whatever; *CORE::GLOBAL::rand = sub { return shift @list } #or something } [download]