The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more

use strict;
use Test::More 0.88;
my @pass_one = split /\n/, simple_ini();
my @pass_two = split /\n/, simple_ini();
is_deeply(\@pass_one, \@pass_two, "Multiple calls to simple_ini are in the same order");
done_testing;