mirror of
git://git.proxmox.com/git/pve-common.git
synced 2024-12-22 21:33:47 +03:00
13 lines
148 B
Perl
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;
|