changeset 1045:3667fe923239

Tests: ipv6 is present by default now.
author Maxim Dounin <mdounin@mdounin.ru>
date Tue, 04 Oct 2016 17:07:22 +0300
parents 1fe8d33f75ad
children a04323ab0622
files lib/Test/Nginx.pm
diffstat 1 files changed, 4 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/lib/Test/Nginx.pm
+++ b/lib/Test/Nginx.pm
@@ -228,6 +228,10 @@ sub has_feature($) {
 		return $^O ne 'MSWin32';
 	}
 
+	if ($feature eq 'ipv6') {
+		return $self->has_version('1.11.5');
+	}
+
 	return 0;
 }