5
0
mirror of git://git.proxmox.com/git/pve-common.git synced 2024-12-22 21:33:47 +03:00
pve-common/test/etc_network_interfaces/t.base.pl
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;