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;