simplified hosts to be standard file data structure, also preserves comments
[scpubgit/System-Introspector.git] / t / hosts.t
index 65822bb..a7c7a43 100644 (file)
--- a/t/hosts.t
+++ b/t/hosts.t
@@ -10,11 +10,16 @@ my $probe = System::Introspector::Probe::Hosts->new(
 
 my $result = $probe->gather;
 ok $result, 'received data';
-my $data = $result->{hosts};
+my $data = $result->{hosts_file};
 ok $data, 'received hosts data';
 
-is_deeply $data,
-    [['1.2.3.4', qw( foo bar )], ['2.3.4.5', 'bar']],
-    'parsing worked';
+is $result->{__error__}, undef, 'no errors';
+ok $data->{file_name}, 'received file name';
+
+my $body = $data->{body};
+ok $body, 'received a body';
+like $body, qr{1.2.3.4\s+foo\s+bar}, 'first host';
+like $body, qr{2.3.4.5\s+bar}, 'second host';
+like $body, qr{some comment}, 'comment preserved';
 
 done_testing;