5
0
mirror of git://git.proxmox.com/git/pve-common.git synced 2025-01-18 14:03:34 +03:00
2015-06-26 07:49:16 +02:00

13 lines
148 B
Perl

my $wanted = load('base');
# parse the empty file
r('');
expect $wanted;
# idempotency
# save, re-parse, and re-check
r(w());
expect $wanted;
1;